diff --git a/csbt b/csbt deleted file mode 100755 index 8a5261154..000000000 Binary files a/csbt and /dev/null differ diff --git a/csbt.README b/csbt.README deleted file mode 100644 index 225c1ed5b..000000000 --- a/csbt.README +++ /dev/null @@ -1,7 +0,0 @@ -`csbt` is a coursier-based sbt launcher. - -It is extremely experimental, suffering a few issues. In particular, compiling -several modules at once (e.g. by running `csbt test:compile` from the coursier -sources) often results in spurious scalac errors. Also, it might have issues -with `*.sbt` files under `~/.sbt` - the whole point of csbt would be to scrap -those for standard configuration files. diff --git a/project/Release.scala b/project/Release.scala index 8590f4ec3..e7aedb896 100644 --- a/project/Release.scala +++ b/project/Release.scala @@ -136,8 +136,7 @@ object Release { val baseDir = Project.extract(state).get(baseDirectory.in(ThisBuild)) val scriptsDir = baseDir / "scripts" val scriptFiles = Seq( - (scriptsDir / "generate-launcher.sh") -> (baseDir / "coursier"), - (scriptsDir / "generate-sbt-launcher.sh") -> (baseDir / "csbt") + (scriptsDir / "generate-launcher.sh") -> (baseDir / "coursier") ) val vcs = state.vcs diff --git a/scripts/generate-sbt-launcher.sh b/scripts/generate-sbt-launcher.sh deleted file mode 100755 index 07fdfaa95..000000000 --- a/scripts/generate-sbt-launcher.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash -set -e - -VERSION=1.0.0 - -"$(dirname "$0")/../coursier" bootstrap \ - "io.get-coursier:sbt-launcher_2.11:$VERSION" \ - -r sonatype:releases \ - --no-default \ - -i launcher \ - -I launcher:org.scala-sbt:launcher-interface:1.0.0 \ - -o csbt \ - -J -Djline.shutdownhook=false \ - "$@"