Merge pull request #2145 from jaceklaskowski/doc-contributing

Docs update: the launcher is in launch/target/sbt-launch.jar
This commit is contained in:
eugene yokota 2015-08-13 03:26:01 -04:00
commit 22702ca0e5
1 changed files with 12 additions and 10 deletions

View File

@ -91,7 +91,7 @@ directory:
notes/ notes/
<target release>/ <target release>/
<your-change-name>.md <your-change-name>.md
Notes files should have the following contents: Notes files should have the following contents:
* Bullet item description under one of the following sections: * Bullet item description under one of the following sections:
@ -125,24 +125,26 @@ Build from source
$ sbt $ sbt
> publishLocal > publishLocal
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.13.8 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>/launch/target/`.
For the v0.13.8 tag, the full location is:
<sbt>/target/sbt-launch-0.13.8.jar <sbt>/target/sbt-launch-0.13.8.jar
If using the 0.13 development branch, the launcher is at: If using the 0.13 development branch, the launcher is at:
<sbt>/target/sbt-launch-0.13.10-SNAPSHOT.jar <sbt>/launch/target/sbt-launch.jar
Directory `target` is removed by clean command. Second solution is using artifact stored in local ivy repository. Directory `target` is removed by `clean` command. Second solution is using the artifact stored in the local ivy repository.
The launcher is located in: The launcher is located in:
$HOME/.ivy2/local/org.scala-sbt/sbt-launch/0.13.8/jars/sbt-launch.jar $HOME/.ivy2/local/org.scala-sbt/sbt-launch/0.13.8/jars/sbt-launch.jar
for v0.13.8 tag, or in: for v0.13.8 tag, or in:
$HOME/.ivy2/local/org.scala-sbt/sbt-launch/0.13.10-SNAPSHOT/jars/sbt-launch.jar $HOME/.ivy2/local/org.scala-sbt/sbt-launch/0.13.10-SNAPSHOT/jars/sbt-launch.jar
for development branch. for development branch.
## Modifying sbt ## Modifying sbt