This commit is contained in:
Mark Harrah 2011-06-01 02:31:26 -04:00
parent 4d87f8c655
commit ed5bb1a2d4
4 changed files with 7 additions and 7 deletions

View File

@ -22,9 +22,9 @@ To build from source, get the latest stable version of sbt (above) and get the c
The '-n' option is strictly only necessary when using msysgit on Windows.
(This works around an issue with spaces in the 'master' branch by not checking the 'master' branch out initially.)
The latest tag for 0.9.x is 0.9.9:
The latest tag for 0.9.x is 0.9.10:
$ git checkout v0.9.9
$ git checkout v0.9.10
Or, get the development branch for 0.9.x:
@ -36,8 +36,8 @@ To build:
Copy your stable ~/bin/sbt script to ~/bin/xsbt and change it to use the launcher at:
<xsbt>/target/sbt-launch-0.9.9.jar
<xsbt>/target/sbt-launch-0.9.10.jar
If using the 0.9 development branch, the launcher is at:
<xsbt>/target/sbt-launch-0.9.10-SNAPSHOT.jar
<xsbt>/target/sbt-launch-0.10.0-SNAPSHOT.jar

View File

@ -4,7 +4,7 @@
[app]
org: org.scala-tools.sbt
name: sbt
version: read(sbt.version)[0.9.10-SNAPSHOT]
version: read(sbt.version)[0.9.10]
class: ${sbt.main.class-sbt.xMain}
components: xsbti
cross-versioned: true

View File

@ -1,5 +1,5 @@
project.organization=org.scala-tools.sbt
project.name=xsbt
sbt.version=0.7.7
project.version=0.9.10-SNAPSHOT
project.version=0.9.10
build.scala.versions=2.8.1

View File

@ -3,7 +3,7 @@ import sbt._
trait Sxr extends BasicScalaProject
{
val sxrConf = config("sxr") hide
val sxrDep = "org.scala-tools.sxr" % "sxr_2.9.0" % "0.2.7" % sxrConf.name jar()
val sxrDep = "org.scala-tools.sxr" %% "sxr" % "0.2.7" % sxrConf.name jar()
def deepSources: PathFinder
def deepBaseDirectories: PathFinder