configure the public key ring

This commit is contained in:
Eugene Yokota 2017-05-10 13:33:07 -04:00
parent c35a487c9e
commit 12e030b49a
2 changed files with 3 additions and 0 deletions

View File

@ -46,6 +46,8 @@ val root = (project in file(".")).
val _ = (clean in dist).value
clean.value
},
pgpSecretRing := file(s"""${sys.props("user.home")}""") / ".ssh" / "scalasbt.key",
pgpPublicRing := file(s"""${sys.props("user.home")}""") / ".ssh" / "scalasbt.pub",
publishToSettings,
sbtLaunchJarUrl := downloadUrlForVersion(sbtVersionToRelease),
sbtLaunchJarLocation := { target.value / "sbt-launch.jar" },

View File

@ -2,3 +2,4 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.2.0-M8")
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.10"
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
addSbtPlugin("com.eed3si9n" % "sbt-export-repo" % "0.1.0")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.1")