Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently this project appears to be hardcoded to use JDK 9 as the alternative JDK for multi release, this PR changes this to JDK 11. The main intent behind this change is that JDK 9 is a non LTS release and because of this its actually cumbersome to install on various platforms. This also opens up the project to use github actions for CI.
Due to changes between JDK 9 and JDK 11 there was some additional work that needed to be done to get
sbt scripted
to pass, notable changes areSecurityPolicy
policy
file as well enable theSecurityManager
. While theSecurityManager
problems were solved in later versions of sbt, updating this projects sbt version causes the tests to fail and so its best to solve this problem separately. This change will be reverted once the sbt version is updated to a later one.source
andtarget
had to be changed slightly since the format was updated since JDK 11This PR also adds
-SNAPSHOT
to the version we can properly iterate changes and test them.One argument that may pop up is that we are essentially dropping support for JDK9, I think a cleaner/more proper way to solve this would be #24 .
Resolves: #19