HBASE-27179 Issues building with OpenJDK 17 (#4594)
Fix test case failures in org.apache.hadoop.hbase.http.log.TestLogLevel under Openjdk 17 because of a missing export of java.security.jgss/sun.security.krb5.
Removed option --illegal-access=permit ignored since Openjdk 17.
Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit e10c15d030
)
This commit is contained in:
parent
80c33e0d46
commit
e762b026db
2
pom.xml
2
pom.xml
|
@ -2828,7 +2828,6 @@
|
|||
<maven.compiler.release>${releaseTarget}</maven.compiler.release>
|
||||
<!-- TODO: replicate logic for windows support -->
|
||||
<argLine>-Dio.netty.tryReflectionSetAccessible=true
|
||||
--illegal-access=permit
|
||||
--add-modules jdk.unsupported
|
||||
--add-opens java.base/java.nio=ALL-UNNAMED
|
||||
--add-opens java.base/sun.nio.ch=ALL-UNNAMED
|
||||
|
@ -2836,6 +2835,7 @@
|
|||
--add-opens java.base/jdk.internal.ref=ALL-UNNAMED
|
||||
--add-opens java.base/java.lang.reflect=ALL-UNNAMED
|
||||
--add-exports java.base/jdk.internal.misc=ALL-UNNAMED
|
||||
--add-exports java.security.jgss/sun.security.krb5=ALL-UNNAMED
|
||||
${hbase-surefire.argLine}</argLine>
|
||||
<!--
|
||||
Value to use for surefire when running jdk11.
|
||||
|
|
Loading…
Reference in New Issue