diff --git a/build.sh b/build.sh index b5253d68b..6b6d02449 100755 --- a/build.sh +++ b/build.sh @@ -53,4 +53,10 @@ export CI_SNAPSHOT_RELEASE="${projectPrefix}publish" # for now, until we're confident in the new release scripts, just close the staging repo. export CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose" +# change this only when we need to update the sbt-the-bash-script +SBT_LAUNCH_VER=1.4.8 +curl -L --silent "https://github.com/sbt/sbt/releases/download/v$SBT_LAUNCH_VER/sbt-$SBT_LAUNCH_VER.tgz" > $HOME/sbt.tgz +tar zxf $HOME/sbt.tgz +export PATH="$HOME/sbt/bin:$PATH" +which sbt sbt clean ${projectPrefix}test ${projectPrefix}publishLocal $releaseTask diff --git a/project/build.properties b/project/build.properties index 0b2e09c5a..b5ef6fff3 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.4.7 +sbt.version=1.4.8