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 693bced commit e8d7ba1Copy full SHA for e8d7ba1
build.sbt
@@ -1,7 +1,13 @@
1
import sbt.Keys.thisProjectRef
2
import xerial.sbt.Sonatype._
3
4
-ThisBuild / publishTo := sonatypePublishToBundle.value
+ThisBuild / publishTo := {
5
+ val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/"
6
+ if (isSnapshot.value)
7
+ Some("Sonatype Snapshots" at centralSnapshots)
8
+ else
9
+ localStaging.value
10
+}
11
ThisBuild / organization := "io.waylay"
12
ThisBuild / homepage := Some(url("https://waylay.io"))
13
ThisBuild / developers := List(
0 commit comments