LANG-1667: Allow tests to access java.util classes such as ArrayList in Java 16 (#788)
This commit is contained in:
parent
7c65852709
commit
ab96fb0245
3
pom.xml
3
pom.xml
|
@ -935,7 +935,8 @@
|
|||
</activation>
|
||||
<properties>
|
||||
<!-- LANG-1265: allow tests to access private fields/methods of java.base classes via reflection -->
|
||||
<argLine>-Xmx512m --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</argLine>
|
||||
<!-- LANG-1667: allow tests to access private fields/methods of java.base/java.util such as ArrayList via reflection -->
|
||||
<argLine>-Xmx512m --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED</argLine>
|
||||
<!-- coverall version 4.3.0 does not work with java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
|
||||
<coveralls.skip>true</coveralls.skip>
|
||||
</properties>
|
||||
|
|
Loading…
Reference in New Issue