Skip to content

Commit

Permalink
Updated pgp plugins for 0.0.7-M3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
penland365 committed Nov 16, 2018
1 parent 0e6c651 commit 270b549
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions build.sbt
Expand Up @@ -4,6 +4,10 @@ import sbtunidoc.Plugin.UnidocKeys._

Defaults.itSettings

//useGpg := true

pgpReadOnly := false

lazy val buildSettings = Seq(
organization := "com.github.finagle",
scalaVersion := "2.12.7",
Expand Down Expand Up @@ -157,6 +161,19 @@ lazy val sharedPublishSettings = Seq(
)
)

credentials ++= (
for {
username <- Option(System.getenv().get("SONATYPE_USERNAME"))
password <- Option(System.getenv().get("SONATYPE_PASSWORD"))
} yield
Credentials(
"Sonatype Nexus Repository Manager",
"oss.sonatype.org",
username,
password
)
).toSeq

lazy val noPublishSettings = Seq(
publish := (),
publishLocal := (),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=0.13.16
sbt.version=0.13.17
6 changes: 3 additions & 3 deletions project/plugins.sbt
@@ -1,7 +1,7 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.10")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1")
//addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.2.6")

0 comments on commit 270b549

Please sign in to comment.