mirror of https://github.com/sbt/sbt.git
14 lines
367 B
Bash
Executable File
14 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=1.0.0-M5
|
|
CACHE_VERSION=v1
|
|
|
|
"$(dirname "$0")/../cli/target/pack/bin/coursier" bootstrap \
|
|
com.github.alexarchambault:coursier-cli_2.11:$VERSION \
|
|
--no-default \
|
|
-r central \
|
|
-D "\${user.home}/.coursier/bootstrap/$VERSION" \
|
|
-f -o coursier \
|
|
-M coursier.cli.Coursier \
|
|
-P coursier.cache="\${user.home}/.coursier/cache/$CACHE_VERSION"
|