We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac352d8 commit 08f7ce7Copy full SHA for 08f7ce7
travis/default.yml
@@ -13,6 +13,12 @@ before_install:
13
if [[ $ADOPTOPENJDK == 8 ]]; then versionPrefix="1\.8"; else versionPrefix=$ADOPTOPENJDK; fi
14
java -version
15
- java -version 2>&1 | grep 'AdoptOpenJDK.*[^0-9]'$versionPrefix'[^0-9]' || exit 1
16
+ # Travis-CI has (as of March 2021, anyway) an outdated sbt-extras version,
17
+ # so overwrite it with a March 2021 version that works with sbt 1.4.8+
18
+ - |
19
+ curl -sL https://raw.githubusercontent.com/paulp/sbt-extras/dc4f350f112580fcdf5f6fa7e8d5d2116475f84a/sbt > /tmp/sbt-launch-script
20
+ chmod +x /tmp/sbt-launch-script
21
+ sudo mv /tmp/sbt-launch-script /usr/local/bin/sbt
22
23
before_cache:
24
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
0 commit comments