summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-04-04 13:04:21 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-04-04 13:11:46 -0700
commitb48ecfc2ec9da4c8861f33df4ca9b6b01f30a7da (patch)
tree0a36b1164618f2ce89dedd2418093789e2372f1c /build.xml
parent470a51285b686b0f0e0149d1741f76b03ecab310 (diff)
downloadscala-b48ecfc2ec9da4c8861f33df4ca9b6b01f30a7da.tar.gz
scala-b48ecfc2ec9da4c8861f33df4ca9b6b01f30a7da.tar.bz2
scala-b48ecfc2ec9da4c8861f33df4ca9b6b01f30a7da.zip
Render scala.full.version to versions.properties.
When called with -Dupdate.versions, the build will render its current set of versions to versions properties. This is used during releases, when bootstrapping to a consistent set of modules that constitute a release. Particularly, scala.full.version is the non-SNAPSHOT full version of scala that's closed to maven.version.number. It's similar in spirit to the module build's snapshotScalaBinaryVersion, except that it's always the full version, so, e.g., 2.11.1 rather than 2.11. This version is so far only used to determine the dependency on scala-continuations-plugin in scala-dist.
Diffstat (limited to 'build.xml')
-rwxr-xr-xbuild.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 763e2711a0..fec1d947c4 100755
--- a/build.xml
+++ b/build.xml
@@ -550,6 +550,7 @@ TODO:
<echo message="Updating `versions.properties`:"/>
<echo message="starr.version = ${starr.version}"/>
<echo message="scala.binary.version = ${scala.binary.version}"/>
+ <echo message="scala.full.version = ${scala.full.version}"/>
<echo message="scala-xml.version.number = ${scala-xml.version.number}"/>
<echo message="scala-parser-combinators.version.number = ${scala-parser-combinators.version.number}"/>
<echo message="scala-continuations-plugin.version.number = ${scala-continuations-plugin.version.number}"/>
@@ -563,6 +564,7 @@ TODO:
<propertyfile file="versions.properties">
<entry key="starr.version" value="${starr.version}"/>
<entry key="scala.binary.version" value="${scala.binary.version}"/>
+ <entry key="scala.full.version" value="${scala.full.version}"/>
<entry key="scala-xml.version.number" value="${scala-xml.version.number}"/>
<entry key="scala-parser-combinators.version.number" value="${scala-parser-combinators.version.number}"/>
<entry key="scala-continuations-plugin.version.number" value="${scala-continuations-plugin.version.number}"/>