-
Notifications
You must be signed in to change notification settings - Fork 29
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
Sync Java 17 migration branch with master #502
Conversation
Migrate to Java 17
Bump workflow actions
Fix Oracle JDK download link
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #502 +/- ##
============================================
+ Coverage 85.43% 85.71% +0.28%
+ Complexity 25 24 -1
============================================
Files 15 15
Lines 151 140 -11
Branches 32 32
============================================
- Hits 129 120 -9
+ Misses 20 18 -2
Partials 2 2
☔ View full report in Codecov by Sentry. |
c9006ae
to
ab8d77b
Compare
@@ -39,6 +39,10 @@ private SetEnv() { | |||
|
|||
} | |||
|
|||
static { | |||
StaticComponentContainer.Modules.exportPackageToAllUnnamed("java.base", "java.util"); |
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.
With java 17 we cannot use reflections of not exposed modules. either we need to pass --add-opens java.base/java.util=ALL-UNNAMED to java -jar command or programmatically do that using burningwave library
0f4d0de
to
d4f8c29
Compare
d4f8c29
to
4e9041e
Compare
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
Purpose
Java 17 migration
Examples
Checklist