2014-01-07 01:57:32 +08:00
|
|
|
import com.typesafe.sbt.SbtGit
|
2014-01-07 03:55:20 +08:00
|
|
|
import com.typesafe.sbt.SbtPgp.PgpKeys.{ useGpg, publishSigned, publishLocalSigned }
|
2011-11-09 13:07:21 +08:00
|
|
|
|
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
|
|
|
|
2014-01-07 01:57:32 +08:00
|
|
|
SbtGit.versionWithGit
|
2015-01-27 08:29:51 +08:00
|
|
|
SbtGit.git.baseVersion := "1.1.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
|
|
|
|
|
|
|
useGpg in GlobalScope := true
|
2014-01-07 03:55:20 +08:00
|
|
|
|
|
|
|
aggregate in publishSigned := false
|
|
|
|
publishSigned := (publishSigned in configLib).value
|
|
|
|
|
|
|
|
aggregate in publishLocalSigned := false
|
|
|
|
publishLocalSigned := (publishLocalSigned in configLib).value
|