Skip to content

Commit 3063528

Browse files
committed
Use sonatypeReleaseAll
1 parent ac1d930 commit 3063528

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

project/plugins.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ resolvers ++= Seq(DefaultMavenRepository,
77
Classpaths.sbtPluginReleases)
88

99
// Sonatype publishing
10-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.5.1")
11-
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
10+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
11+
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2-1")
1212

1313
// Dependency updates
14-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.9")
14+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.4")
1515

1616
// Coverage
1717
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
18-
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.12")
18+
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.15")

scripts/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fi
1717
echo "Publishing version ${VERSION}"
1818
if [[ -n "$CI" ]] && [[ "$CURRENT_BRANCH" == "$PUBLISH_BRANCH" || "$CIRCLE_BRANCH" == "$PUBLISH_BRANCH" ]]; then
1919
sbt 'set version := "'"${VERSION}"'"' 'set pgpPassphrase := Some("'"$SONATYPE_GPG_PASSPHRASE"'".toCharArray)' +publishSigned
20-
sbt 'set version := "'"${VERSION}"'"' +sonatypeRelease
20+
sbt 'set version := "'"${VERSION}"'"' +sonatypeReleaseAll
2121
else
2222
sbt 'set version := "'"${VERSION}"'"' +publishLocal
2323
fi

0 commit comments

Comments
 (0)