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 45f4cfa commit 7c92152Copy full SHA for 7c92152
build.sbt
@@ -29,11 +29,10 @@ lazy val assemblySettings = Seq(
29
lazy val publishSettings = Seq(
30
publishMavenStyle := true,
31
publishTo := {
32
- val defaultNexusUrl = "https://oss.sonatype.org/"
33
if (isSnapshot.value)
34
- Some("snapshots" at defaultNexusUrl + "content/repositories/snapshots")
+ Some("snapshots" at "https://central.sonatype.com/repository/maven-snapshots/")
35
else {
36
- sonatypePublishToBundle.value
+ sonatypePublishToBundle.value //todo: full release not tested yet
37
}
38
},
39
Test / publishArtifact := false,
0 commit comments