config/build.sbt

30 lines
858 B
Plaintext
Raw Normal View History

import com.typesafe.sbt.SbtGit
import com.typesafe.sbt.SbtPgp.PgpKeys.{ useGpg, publishSigned, publishLocalSigned }
2011-11-09 13:07:21 +08:00
// 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
SbtGit.versionWithGit
SbtGit.GitKeys.baseVersion in ThisBuild := "1.1.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")
scalaVersion in ThisBuild := "2.10.2"
useGpg in GlobalScope := true
aggregate in publishSigned := false
publishSigned := (publishSigned in configLib).value
aggregate in publishLocalSigned := false
publishLocalSigned := (publishLocalSigned in configLib).value