From 137973c06cecdd0f5c8e0e648d22e19e268f3d5f Mon Sep 17 00:00:00 2001 From: Nick Howard Date: Mon, 12 Feb 2018 18:00:38 -0700 Subject: [PATCH] Update Pants development instructions for Scala 2.12 (#777) The Pants build targets have moved to 2.12. This updates the instructions to account for that. --- DEVELOPMENT.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index b851e9ea8..f82115d12 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -142,17 +142,17 @@ $ sbt ++2.12.4 proxy-tests/it:test [Pants](https://github.com/pantsbuild/pants) build tool is also added to an experimental path to build the software -Currently only the CLI command can be built via Pants with Scala 2.11.11. +Currently only the CLI command can be built via Pants with Scala 2.12.4. To iterate on code changes: ``` -./pants run cli/src/main/scala-2.11:coursier-cli -- fetch --help +./pants run cli/src/main/scala-2.12:coursier-cli -- fetch --help ``` To build a distributable binary ``` -./pants binary cli/src/main/scala-2.11:coursier-cli +./pants binary cli/src/main/scala-2.12:coursier-cli # Artifact will be placed under dist/ java -jar dist/coursier-cli.jar fetch --help