From 2b28173b76a70872c25c12df83df87c281b52028 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 17 Feb 2011 16:27:43 -0500 Subject: [PATCH] README for building from source --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..805533143 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +See for setup instructions for the stable version of sbt. + +To build from source, get the latest stable version of sbt (above) and get the code: + + $ git clone git://github.com/harrah/xsbt.git + $ cd xsbt + +The latest tag for 0.9.x is 0.9.0: + + $ git checkout v0.9.0 + +Or, get the development branch for 0.9.x: + + $ git checkout 0.9 + +To build: + + $ sbt update "project Launcher" proguard "project Simple Build Tool" "publish-local" + +Copy your stable ~/bin/sbt script to ~/bin/xsbt and change it to use the launcher at: + + /target/sbt-launch-0.9.0-SNAPSHOT.jar \ No newline at end of file