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.
2 parents c2f0529 + 5284ef2 commit de47e44Copy full SHA for de47e44
build.sbt
@@ -33,8 +33,9 @@ ThisBuild / developers := List(
33
)
34
ThisBuild / pomIncludeRepository := (_ => false) // drop repos other than Maven Central from POM
35
ThisBuild / publishTo := {
36
- val nexus = "https://oss.sonatype.org/"
37
- 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)
38
+ else localStaging.value
39
}
40
41
ThisBuild / Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat
0 commit comments