-
Notifications
You must be signed in to change notification settings - Fork 92
add Java 9 test #179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add Java 9 test #179
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're waiting on the new sbt 0.13.17, and possibly a new sbt scala module plugin release.
@@ -50,4 +50,4 @@ if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then | |||
openssl aes-256-cbc -K $K -iv $IV -in admin/secring.asc.enc -out admin/secring.asc -d | |||
fi | |||
|
|||
sbt "$publishVersion" "$publishScalaVersion" clean update +test +publishLocal $extraTarget | |||
sbt -Dsbt.scala.version=2.10.7 "$publishVersion" "$publishScalaVersion" clean update +test +publishLocal $extraTarget |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw @SethTisue mention this, but I'd rather avoid breaking fix the build for people.
)) | ||
.getOrElse(Map.empty) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This refactoring actually causes an NPE to silently succeed with the doc
task. It's better if the task still fails, IMO.
This part of the sbt config may get replaced by https://github.com/ThoughtWorksInc/sbt-api-mappings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I take this back. We will need to degrade when the Java boostrap classpath is unavailable. I'll be using this PR as a basis for fixing Java 9 including the external doc linking.
waiting on scala/sbt-scala-module#32 |
Continuing in #180 |
fix #173