File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,8 @@ logLevel := Level.Warn
3
3
addSbtPlugin(" io.gatling" % " gatling-sbt" % " 2.2.2" )
4
4
5
5
// supports release in maven central
6
-
7
- addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 2.3" )
8
-
6
+ addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 2.5" )
9
7
addSbtPlugin(" com.jsuereth" % " sbt-pgp" % " 1.1.2" )
10
-
11
8
addSbtPlugin(" com.dwijnand" % " sbt-travisci" % " 1.1.3" )
9
+ addSbtPlugin(" com.dwijnand" % " sbt-dynver" % " 3.3.0" )
12
10
Original file line number Diff line number Diff line change
1
+ # Release Procedure
2
+
3
+ Artefacts are published to [ Sonatype OSS] ( https://oss.sonatype.org/ ) ,
4
+ which sync's with Maven Central repositories.
5
+
6
+ The following procedure is executed manually:
7
+
8
+ ~~~
9
+ $ sbt +test # tests the code
10
+ $ git tag -vX.Y.Z -m "release version X.Y.Z"
11
+ $ sbt +publishSigned #publishes the signed artefacts to staging
12
+ $ sbt sonatypeRelease
13
+ $ git push --tags origin develop
14
+ ~~~
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments