mirror of https://github.com/sbt/sbt.git
preparation for 0.13.0-Beta1
This commit is contained in:
parent
db3e738802
commit
19d75ae2f9
|
|
@ -35,11 +35,11 @@ See below for details on getting sbt sources and modifying the documentation.
|
|||
$ git clone git://github.com/sbt/sbt.git
|
||||
$ cd sbt
|
||||
|
||||
3. The initial branch is the development branch 0.13, which contains the latest code for the next major sbt release. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.2:
|
||||
3. The initial branch is the development branch 0.13, which contains the latest code for the next major sbt release. To build a specific release or commit, switch to the associated tag. The tag for the latest stable release is v0.12.3:
|
||||
|
||||
$ git checkout v0.12.2
|
||||
$ git checkout v0.12.3
|
||||
|
||||
Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.12.2, the v0.11.2 tag is built with 0.11.1, and the v0.11.0 tag is built with 0.10.1.
|
||||
Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.12.4-RC1, the v0.11.2 tag is built with 0.11.1, and the v0.11.0 tag is built with 0.10.1.
|
||||
|
||||
4. To build the launcher, publish all components locally, and build documentation:
|
||||
|
||||
|
|
@ -49,9 +49,9 @@ See below for details on getting sbt sources and modifying the documentation.
|
|||
|
||||
$ sbt publish-local proguard sxr doc sphinx:mappings
|
||||
|
||||
5. To use this locally built version of sbt, copy your stable `~/bin/sbt` script to `~/bin/xsbt` and change it to use the launcher jar in `<sbt>/target/`. For the v0.12.2 tag, the full location is:
|
||||
5. To use this locally built version of sbt, copy your stable `~/bin/sbt` script to `~/bin/xsbt` and change it to use the launcher jar in `<sbt>/target/`. For the v0.12.3 tag, the full location is:
|
||||
|
||||
<sbt>/target/sbt-launch-0.12.2.jar
|
||||
<sbt>/target/sbt-launch-0.12.3.jar
|
||||
|
||||
If using the 0.13 development branch, the launcher is at:
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ object Sbt extends Build
|
|||
override lazy val settings = super.settings ++ buildSettings ++ Status.settings
|
||||
def buildSettings = Seq(
|
||||
organization := "org.scala-sbt",
|
||||
version := "0.13.0-SNAPSHOT",
|
||||
version := "0.13.0-Beta1",
|
||||
publishArtifact in packageDoc := false,
|
||||
scalaVersion := "2.10.2-RC2",
|
||||
publishMavenStyle := false,
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ object %s {
|
|||
object Common
|
||||
{
|
||||
def lib(m: ModuleID) = libraryDependencies += m
|
||||
lazy val jlineDep = "jline" % "jline" % "2.10"
|
||||
lazy val jlineDep = "jline" % "jline" % "2.11"
|
||||
lazy val jansiDep = "org.fusesource.jansi" % "jansi" % "1.9" // jline pom doesn't explicitly declare it?
|
||||
lazy val jline = Seq(lib(jlineDep), lib(jansiDep))
|
||||
lazy val ivy = lib("org.apache.ivy" % "ivy" % "2.3.0-rc1")
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=0.12.2
|
||||
sbt.version=0.12.4-RC1
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
[app]
|
||||
org: org.scala-sbt
|
||||
name: sbt
|
||||
version: read(sbt.version)[0.13.0-M2]
|
||||
version: read(sbt.version)[0.13.0-Beta1]
|
||||
class: ${sbt.main.class-sbt.xMain}
|
||||
components: xsbti
|
||||
cross-versioned: true
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
[app]
|
||||
org: org.scala-sbt
|
||||
name: sbt
|
||||
version: 0.13.0-M2
|
||||
version: 0.13.0-Beta1
|
||||
class: sbt.ScriptMain
|
||||
components: xsbti
|
||||
cross-versioned: true
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
[app]
|
||||
org: org.scala-sbt
|
||||
name: sbt
|
||||
version: 0.13.0-M2
|
||||
version: 0.13.0-Beta1
|
||||
class: sbt.ConsoleMain
|
||||
components: xsbti
|
||||
cross-versioned: true
|
||||
|
|
|
|||
|
|
@ -9,9 +9,9 @@ extensions = ['sphinxcontrib.issuetracker', 'sphinx.ext.extlinks', 'howto']
|
|||
|
||||
project = 'sbt'
|
||||
version = '0.13'
|
||||
release = '0.13.0-SNAPSHOT'
|
||||
release = '0.13.0'
|
||||
scalaVersion = "2.10"
|
||||
scalaRelease = "2.10.1"
|
||||
scalaRelease = "2.10.2"
|
||||
|
||||
# General settings
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue