We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f32a0 commit ff55478Copy full SHA for ff55478
project/Build.scala
@@ -57,11 +57,10 @@ object Build extends AutoPlugin {
57
),
58
version := publishVersion,
59
publishTo := {
60
- val nexus = "https://s01.oss.sonatype.org/"
61
if (isRelease) {
62
- Some("releases" at s"${nexus}service/local/staging/deploy/maven2")
+ Some("releases" at "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
63
} else {
64
- Some("snapshots" at s"${nexus}content/repositories/snapshots")
+ Some("snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots/")
65
}
66
},
67
pomExtra := {
0 commit comments