config/build.sbt

23 lines
753 B
Plaintext
Raw Normal View History

// to release, bump major/minor/micro as appropriate,
// update NEWS, update version in README.md, tag, then
// publishSigned.
// Release tags should follow: http://semver.org/
2011-11-08 04:31:23 +08:00
2016-04-03 03:45:37 +08:00
enablePlugins(GitVersioning)
git.baseVersion := "1.3.0"
2011-11-13 06:45:12 +08:00
organization in GlobalScope := "com.typesafe"
2011-11-13 06:45:12 +08:00
scalacOptions in GlobalScope in Compile := Seq("-unchecked", "-deprecation", "-feature")
scalacOptions in GlobalScope in Test := Seq("-unchecked", "-deprecation", "-feature")
2015-01-27 08:28:04 +08:00
scalaVersion in ThisBuild := "2.10.4"
2016-04-03 03:55:06 +08:00
useGpg := true
2016-04-03 03:55:06 +08:00
aggregate in PgpKeys.publishSigned := false
PgpKeys.publishSigned := (PgpKeys.publishSigned in configLib).value
2016-04-03 03:55:06 +08:00
aggregate in PgpKeys.publishLocalSigned := false
PgpKeys.publishLocalSigned := (PgpKeys.publishLocalSigned in configLib).value