Skip to content

Commit

Permalink
Bumped up to use sbt-pgp 2.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jun 17, 2020
1 parent a995899 commit 9e22001
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
*.log
target
.idea/
_site/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Please use the following commands to publish to Sonatype:
```
$ export SCALAJS_VERSION=0.6.33
$ sbt clean +scalatestPlusScalaCheckJS/publishSigned +scalatestPlusScalaCheckJVM/publishSigned scalatestPlusScalaCheckNative/publishSigned
$ export SCALAJS_VERSION=1.0.1
$ export SCALAJS_VERSION=1.1.0
$ sbt ++2.11.12 "project scalatestPlusScalaCheckJS" clean publishSigned
$ sbt ++2.12.11 "project scalatestPlusScalaCheckJS" clean publishSigned
$ sbt ++2.13.2 "project scalatestPlusScalaCheckJS" clean publishSigned
Expand Down
13 changes: 10 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,16 @@ val sharedSettings = Seq(
publishMavenStyle := true,
publishArtifact in Test := false,
pomIncludeRepository := { _ => false },
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials"),
pgpSecretRing := file((Path.userHome / ".gnupg" / "secring.gpg").getAbsolutePath),
pgpPassphrase := None
pomExtra := (
<scm>
<url>https://github.com/scalatest/scalatestplus-scalacheck</url>
<connection>scm:git:git@github.com:scalatest/scalatestplus-scalacheck.git</connection>
<developerConnection>
scm:git:git@github.com:scalatest/scalatestplus-scalacheck.git
</developerConnection>
</scm>
),
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
)

lazy val scalatestPlusScalaCheck =
Expand Down
4 changes: 1 addition & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVer

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.0-M2")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")

addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.2")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")

Expand Down

0 comments on commit 9e22001

Please sign in to comment.