-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from eed3si9n/wip/bump
sbt 1.2.8
- Loading branch information
Showing
24 changed files
with
80 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,40 @@ | ||
language: scala | ||
jdk: oraclejdk8 | ||
script: | ||
- sbt "++${TRAVIS_SCALA_VERSION}" "^^${SBT_VERSION}" test scripted | ||
|
||
env: ADOPTOPENJDK=11 | ||
|
||
matrix: | ||
include: | ||
- env: SBT_VERSION="0.13.18" | ||
- env: SBT_VERSION="0.13.18" ADOPTOPENJDK=8 | ||
scala: 2.10.7 | ||
- env: SBT_VERSION="1.2.8" | ||
- env: SBT_VERSION="1.2.8" ADOPTOPENJDK=11 | ||
scala: 2.12.8 | ||
- scala: 2.13.0 | ||
script: "sbt \"++${TRAVIS_SCALA_VERSION}\" library/test" | ||
script: "sbt \"++${TRAVIS_SCALA_VERSION}!\" library/test" | ||
- scala: 2.11.12 | ||
script: "sbt \"++${TRAVIS_SCALA_VERSION}\" library/test" | ||
script: "sbt \"++${TRAVIS_SCALA_VERSION}!\" library/test" | ||
|
||
before_install: | ||
# adding $HOME/.sdkman to cache would create an empty directory, which interferes with the initial installation | ||
- "[[ -d $HOME/.sdkman/bin/ ]] || rm -rf $HOME/.sdkman/" | ||
- curl -sL https://get.sdkman.io | bash | ||
- echo sdkman_auto_answer=true > $HOME/.sdkman/etc/config | ||
- source "$HOME/.sdkman/bin/sdkman-init.sh" | ||
|
||
install: | ||
- sdk install java $(sdk list java | grep -o "$ADOPTOPENJDK\.[0-9\.]*hs-adpt" | head -1) | ||
- unset JAVA_HOME | ||
- java -Xmx32m -version | ||
- javac -J-Xmx32m -version | ||
|
||
script: | ||
- sbt "++${TRAVIS_SCALA_VERSION}!" "^^${SBT_VERSION}" test scripted | ||
|
||
before_cache: | ||
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete | ||
- find $HOME/.sbt -name "*.lock" -delete | ||
|
||
cache: | ||
directories: | ||
- $HOME/.ivy2/cache | ||
- $HOME/.coursier | ||
- $HOME/.sbt | ||
|
||
before_cache: | ||
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete | ||
- find $HOME/.sbt -name "*.lock" -print -delete | ||
|
||
notifications: | ||
email: | ||
on_success: never |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
scalaVersion := "2.13.0" | ||
name := "example" | ||
|
||
enablePlugins(ContrabandPlugin, JsonCodecPlugin) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
plugin/src/sbt-test/sbt-contraband/simple/project/Build.scala
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
plugin/src/sbt-test/sbt-contraband/simple/project/plugins.sbt
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
plugin/src/sbt-test/sbt-contraband/simple/src/main/scala/hello.scala
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=0.13.18 | ||
sbt.version=1.2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.1") | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.5") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.3") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3") |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.