2015-11-29 23:25:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2015-12-31 01:12:55 +01:00
|
|
|
VERSION=1.0.0-M1
|
|
|
|
|
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 \
|
|
|
|
|
-V com.github.alexarchambault:coursier_2.11:$VERSION \
|
|
|
|
|
-V com.github.alexarchambault:coursier-cache_2.11:$VERSION \
|
2016-01-03 19:35:01 +01:00
|
|
|
-D "\${user.home}/.coursier/bootstrap/$VERSION" \
|
2015-12-13 13:16:52 +01:00
|
|
|
-r https://repo1.maven.org/maven2 \
|
|
|
|
|
-r https://oss.sonatype.org/content/repositories/releases \
|
|
|
|
|
-r https://oss.sonatype.org/content/repositories/snapshots \
|
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"
|