2014-01-07 01:57:32 +08:00
|
|
|
import com.typesafe.sbt.SbtGit
|
2014-01-07 03:39:21 +08:00
|
|
|
import com.typesafe.sbt.SbtPgp.PgpKeys.useGpg
|
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
|
|
|
|
|
|
|
|
SbtGit.git.baseVersion in GlobalScope := "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")
|
|
|
|
|
|
|
|
scalaVersion in ThisBuild := "2.10.2"
|
2014-01-07 03:39:21 +08:00
|
|
|
|
|
|
|
useGpg in GlobalScope := true
|