diff --git a/.travis.yml b/.travis.yml index 42f51eb..c12ec4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,15 +5,22 @@ import: scala/scala-dev:travis/default.yml language: scala scala: - - 3.0.0 - - 3.0.0-RC3 + - 3.0.2 - 2.11.12 - - 2.12.14 - - 2.13.5 + - 2.12.15 + - 2.13.6 env: - ADOPTOPENJDK=8 - ADOPTOPENJDK=11 + - ADOPTOPENJDK=17 + +# because it hits scala/bug#12419 which will almost certainly +# never be fixed in the 2.11.x series +jobs: + exclude: + - scala: 2.11.12 + env: ADOPTOPENJDK=17 install: - git fetch --tags # get all tags for sbt-dynver diff --git a/build.sbt b/build.sbt index d3639ec..8606df9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,3 +1,6 @@ +ThisBuild / resolvers += "scala-integration" at + "https://scala-ci.typesafe.com/artifactory/scala-integration/" + val disableDocs = sys.props("nodocs") == "true" || // on jdk 11 https://github.com/scala/scala-java8-compat/issues/160, seems to fail the build (not on 8)