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 a03a611 commit 364fac5Copy full SHA for 364fac5
build.sbt
@@ -1,3 +1,5 @@
1
+import ReleaseTransformations._
2
+
3
lazy val noPublish = Seq(
4
publish := {},
5
publishLocal := {},
@@ -38,6 +40,19 @@ lazy val paigesSettings = Seq(
38
40
publishMavenStyle := true,
39
41
publishArtifact in Test := false,
42
pomIncludeRepository := Function.const(false),
43
+ releaseProcess := Seq[ReleaseStep](
44
+ checkSnapshotDependencies,
45
+ inquireVersions,
46
+ runClean,
47
+ runTest,
48
+ setReleaseVersion,
49
+ commitReleaseVersion,
50
+ tagRelease,
51
+ publishArtifacts,
52
+ setNextVersion,
53
+ commitNextVersion,
54
+ ReleaseStep(action = Command.process("sonatypeReleaseAll", _)),
55
+ pushChanges),
56
publishTo := {
57
val nexus = "https://oss.sonatype.org/"
58
if (isSnapshot.value)
0 commit comments