We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e14f326 + 7bb7ce7 commit e0ccb4dCopy full SHA for e0ccb4d
build.sbt
@@ -39,8 +39,9 @@ ThisBuild / developers := List(
39
ThisBuild / turbo := true
40
ThisBuild / pomIncludeRepository := (_ => false)
41
ThisBuild / publishTo := {
42
- val nexus = "https://oss.sonatype.org/"
43
- Some("releases" at nexus + "service/local/staging/deploy/maven2")
+ val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/"
+ if (isSnapshot.value) Some("central-snapshots" at centralSnapshots)
44
+ else localStaging.value
45
}
46
47
def commonSettings: Seq[Setting[?]] = Seq(
0 commit comments