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 0cc518d commit f9b3ef7Copy full SHA for f9b3ef7
build.sbt
@@ -51,3 +51,12 @@ scalacOptions += "-P:continuations:enable"
51
// code coverage
52
scoverage.ScoverageSbtPlugin.ScoverageKeys.coverageHighlighting := false
53
54
+// maven publishing
55
+publishTo := {
56
+ val nexus = "https://oss.sonatype.org/"
57
+ val repo = if (version.value.trim.endsWith("SNAPSHOT"))
58
+ "snapshots" at nexus + "content/repositories/snapshots"
59
+ else
60
+ "releases" at nexus + "service/local/staging/deploy/maven2"
61
+ Some(repo)
62
+}
0 commit comments