2011-12-01 05:30:03 +08:00
|
|
|
// to release, bump major/minor/micro as appropriate,
|
2014-01-07 01:57:32 +08:00
|
|
|
// 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
|
|
|
|
2012-04-13 03:21:06 +08:00
|
|
|
organization in GlobalScope := "com.typesafe"
|
2011-11-13 06:45:12 +08:00
|
|
|
|
2013-06-25 22:25:42 +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"
|
2014-01-07 03:39:21 +08:00
|
|
|
|
2016-04-03 03:55:06 +08:00
|
|
|
useGpg := true
|
2014-01-07 03:55:20 +08:00
|
|
|
|
2016-04-03 03:55:06 +08:00
|
|
|
aggregate in PgpKeys.publishSigned := false
|
|
|
|
PgpKeys.publishSigned := (PgpKeys.publishSigned in configLib).value
|
2014-01-07 03:55:20 +08:00
|
|
|
|
2016-04-03 03:55:06 +08:00
|
|
|
aggregate in PgpKeys.publishLocalSigned := false
|
|
|
|
PgpKeys.publishLocalSigned := (PgpKeys.publishLocalSigned in configLib).value
|