We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b23a51 commit 66ecd0cCopy full SHA for 66ecd0c
hibernate-core/hibernate-core.gradle
@@ -264,6 +264,9 @@ test {
264
if ( gradle.ext.javaVersions.test.launcher.asInt() >= 9 ) {
265
// See org.hibernate.boot.model.naming.NamingHelperTest.DefaultCharset.set
266
jvmArgs( ['--add-opens', 'java.base/java.nio.charset=ALL-UNNAMED'] )
267
+ // Weld needs this to generate proxies
268
+ jvmArgs( ['--add-opens', 'java.base/java.security=ALL-UNNAMED'] )
269
+ jvmArgs( ['--add-opens', 'java.base/java.lang=ALL-UNNAMED'] )
270
}
271
272
beforeTest { descriptor ->
0 commit comments