summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorStefan Zeiger <szeiger@novocode.com>2016-08-23 17:40:17 +0200
committerGitHub <noreply@github.com>2016-08-23 17:40:17 +0200
commitb3f6c7796e139e5a5e0e3588201aa97d1dc4ef3c (patch)
tree3f3b8b6b0261bf5170143147047a2fa791bf1312 /build.sbt
parent74702078b14ccba1710dd714c1723bef879c46a0 (diff)
parente2b6c7b608b82fca5343f6d09236c2b48b5d824d (diff)
downloadscala-b3f6c7796e139e5a5e0e3588201aa97d1dc4ef3c.tar.gz
scala-b3f6c7796e139e5a5e0e3588201aa97d1dc4ef3c.tar.bz2
scala-b3f6c7796e139e5a5e0e3588201aa97d1dc4ef3c.zip
Merge pull request #5356 from szeiger/wip/raid-1
Switch remaining uses of ant over to sbt
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt10
1 files changed, 4 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index d9a9f43db2..3ceff35b45 100644
--- a/build.sbt
+++ b/build.sbt
@@ -102,12 +102,10 @@ lazy val publishSettings : Seq[Setting[_]] = Seq(
publishMavenStyle := true
)
-// Set the version number: The ANT build uses the file "build.number" to get the base version. Overriding versions or
-// suffixes for certain builds is done by directly setting variables from the shell scripts. For example, in
-// publish-core this requires computing the commit SHA first and then passing it to ANT. In the sbt build we use
-// the two settings `baseVersion` and `baseVersionSuffix` to compute all versions (canonical, Maven, OSGi). See
-// VersionUtil.versionPropertiesImpl for details. The standard sbt `version` setting should not be set directly. It
-// is the same as the Maven version and derived automatically from `baseVersion` and `baseVersionSuffix`.
+// Set the version number: We use the two settings `baseVersion` and `baseVersionSuffix` to compute all versions
+// (canonical, Maven, OSGi). See VersionUtil.versionPropertiesImpl for details. The standard sbt `version` setting
+// should not be set directly. It is the same as the Maven version and derived automatically from `baseVersion` and
+// `baseVersionSuffix`.
globalVersionSettings
baseVersion in Global := "2.12.0"
baseVersionSuffix in Global := "SNAPSHOT"