From 12e030b49aea5cccb1eee87b696f1c2515d5d57f Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Wed, 10 May 2017 13:33:07 -0400 Subject: [PATCH] configure the public key ring --- build.sbt | 2 ++ project/plugins.sbt | 1 + 2 files changed, 3 insertions(+) diff --git a/build.sbt b/build.sbt index 09dbbfa9e..f9ea3b55f 100644 --- a/build.sbt +++ b/build.sbt @@ -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" }, diff --git a/project/plugins.sbt b/project/plugins.sbt index 8c212a981..84b3b6e20 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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")