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 a735e9e commit 6d450fbCopy full SHA for 6d450fb
sonatype.sbt
@@ -22,3 +22,11 @@ pomExtra in Global := {
22
</developer>
23
</developers>
24
}
25
+
26
+publishTo := {
27
+ val nexus = "https://oss.sonatype.org/"
28
+ if (isSnapshot.value)
29
+ Some("snapshots" at nexus + "content/repositories/snapshots")
30
+ else
31
+ Some("releases" at nexus + "service/local/staging/deploy/maven2")
32
+}
0 commit comments