2015-11-29 23:25:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2016-01-07 09:39:39 +01:00
|
|
|
VERSION=1.0.0-M3
|
2015-12-31 01:12:55 +01:00
|
|
|
CACHE_VERSION=v1
|
|
|
|
|
|
2015-11-29 23:25:37 +01:00
|
|
|
"$(dirname "$0")/../cli/target/pack/bin/coursier" bootstrap \
|
2015-12-31 01:12:55 +01:00
|
|
|
com.github.alexarchambault:coursier-cli_2.11:$VERSION \
|
2016-01-07 09:39:39 +01:00
|
|
|
-r https://oss.sonatype.org/content/repositories/staging \
|
2016-01-03 19:35:01 +01:00
|
|
|
-D "\${user.home}/.coursier/bootstrap/$VERSION" \
|
2015-11-29 23:25:37 +01:00
|
|
|
-b \
|
|
|
|
|
-f -o coursier \
|
|
|
|
|
-M coursier.cli.Coursier \
|
2016-01-03 19:35:01 +01:00
|
|
|
-P coursier.cache="\${user.home}/.coursier/cache/$CACHE_VERSION"
|