clean up CONTRIBUTING and README

This commit is contained in:
Mark Harrah 2013-06-28 19:05:22 -04:00
parent fc34039894
commit 8c7a1a4f8a
2 changed files with 6 additions and 10 deletions

View File

@ -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.3:
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.4:
$ git checkout v0.12.3
$ git checkout v0.12.4
Note that sbt is always built with the previous stable release. For example, the 0.13 branch is built with 0.12.4-RC3, 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 and the v0.11.2 tag is built with 0.11.1.
4. To build the launcher and publish all components locally,
@ -54,9 +54,9 @@ See below for details on getting sbt sources and modifying the documentation.
(Note: sxr currently doesn't work for macros, so it doesn't work for sbt right now.)
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:
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.4 tag, the full location is:
<sbt>/target/sbt-launch-0.12.3.jar
<sbt>/target/sbt-launch-0.12.4.jar
If using the 0.13 development branch, the launcher is at:

View File

@ -1,9 +1,6 @@
[Google Code]: http://code.google.com/p/simple-build-tool
[Scala Days 2011]: http://days2011.scala-lang.org/node/138/285
[CONTRIBUTING]: https://github.com/sbt/sbt/blob/0.13/CONTRIBUTING.md
[documentation]: http://www.scala-sbt.org/release/docs/
[Setup]: http://www.scala-sbt.org/release/docs/Getting-Started/Setup
[video of a demo]: http://vimeo.com/20263617
[FAQ]: http://www.scala-sbt.org/release/docs/faq
# sbt 0.13
@ -12,6 +9,5 @@ This is the 0.13.x series of sbt.
* [Setup]: Describes getting started with the latest binary release.
* See [CONTRIBUTING] for how to build from source, open an issue, fix or add documentation, or submit a pull request.
* [FAQ]: Explains how to get help, how to migrate from 0.7.7, and more.
* There is a [video of a demo] given at [Scala Days 2011] based on sbt 0.10.0 that gives an introduction to the configuration system in sbt 0.10.0 and later. See the [documentation] for current information.
* [FAQ]: Explains how to get help and more.
* [Google Code]: hosts sbt 0.7.7 and earlier versions