We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 760620e commit 95bf870Copy full SHA for 95bf870
project/common.scala
@@ -13,7 +13,7 @@ object Common {
13
)
14
15
val settings: Seq[Setting[_]] = ls.Plugin.lsSettings ++ Seq(
16
- version := "0.11.3",
+ version := "0.11.4",
17
18
crossScalaVersions := Seq("2.10.4", "2.11.5"),
19
@@ -28,8 +28,8 @@ object Common {
28
29
publishTo <<= version { (v: String) =>
30
val nexus = "https://oss.sonatype.org/"
31
- if (v.trim.endsWith("SNAPSHOT"))
32
- Some("snapshots" at nexus + "content/repositories/snapshots")
+ if (v.trim.endsWith("SNAPSHOT"))
+ Some("snapshots" at nexus + "content/repositories/snapshots")
33
else
34
Some("releases" at nexus + "service/local/staging/deploy/maven2")
35
},
0 commit comments