Skip to content

Commit

Permalink
Merge pull request Karm#218 from Karm/whitelist-modules-warning-java-…
Browse files Browse the repository at this point in the history
…source-mismatch

Whitelist change only, system modules path not set...
  • Loading branch information
Karm authored Oct 28, 2023
2 parents 83c3828 + ad74609 commit f0fd875
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ public Pattern[] get(boolean inContainer) {
Pattern.compile("WARNING.* reflective access.*"),
Pattern.compile("WARNING: All illegal access operations.*"),
Pattern.compile("WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.*"),
Pattern.compile("WARNING: Please consider reporting this to the maintainers of com.fasterxml.jackson.databind.util.*")
Pattern.compile("WARNING: Please consider reporting this to the maintainers of com.fasterxml.jackson.databind.util.*"),
// JAVA_HOME (e.g. 17) != GRAALVM_HOME (e.g. 21)
Pattern.compile(".*system modules path not set in conjunction with -source .*")
};
}
},
Expand Down

0 comments on commit f0fd875

Please sign in to comment.