From 04ab2d30e15b456a6842594bdc7fb5b021b85c23 Mon Sep 17 00:00:00 2001 From: Hiroshi Ito Date: Fri, 16 Mar 2018 14:54:34 +0900 Subject: [PATCH] Improve instruction for locally built sbt in CONTRIBUTING.md --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 190d5a0cc..7dc91fcdd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,10 +188,12 @@ sbt:sbtRoot> publishLocal ### Using the locally built sbt -To use the locally built sbt, set the version in `build.properties` file to `1.$MINOR.$PATCH-SNAPSHOT`. +The `publishLocal` above will build and publish version `1.$MINOR.$PATCH-SNAPSHOT` (e.g. 1.1.2-SNAPSHOT) to your local ivy repository. + +To use the locally built sbt, set the version in `build.properties` file in your project to `1.$MINOR.$PATCH-SNAPSHOT` then launch `sbt` (this can be the `sbt` launcher installed in your machine). ``` -$ cd ../hello +$ cd $YOUR_OWN_PROJECT $ sbt > compile ```