com.jsuereth.sbtpgp.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sbt-pgp_sbt2.0.0-M2_3 Show documentation
Show all versions of sbt-pgp_sbt2.0.0-M2_3 Show documentation
sbt-pgp provides PGP signing for sbt
The newest version!
package com.jsuereth
package object sbtpgp {
/** Default extension for PGP signatures. */
val gpgExtension = ".asc"
// Helper to figure out how to run GPG signing...
def isWindows = System.getProperty("os.name").toLowerCase.indexOf("windows") != -1
}