mirror of https://github.com/sbt/sbt.git
configure the public key ring
This commit is contained in:
parent
c35a487c9e
commit
12e030b49a
|
|
@ -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" },
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue