Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions pom.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<properties>
<!-- configuration settings -->
<jvm.options></jvm.options>
<client.jvm.jpms.args></client.jvm.jpms.args>
<as.managementAddress>127.0.0.1</as.managementAddress>
<as.managementPort>9990</as.managementPort>
<browser>phantomjs</browser>
Expand Down Expand Up @@ -366,7 +366,7 @@
</systemPropertyVariables>
<groups>${test.included.category}</groups>
<excludedGroups>${test.excluded.category},${upstream.excluded.category}</excludedGroups>
<argLine>${jvm.options}</argLine>
<argLine>${client.jvm.jpms.args}</argLine>
</configuration>
</plugin>
</plugins>
Expand Down Expand Up @@ -405,14 +405,17 @@
<!-- This replaces unsupported findbugs plugin -->
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.2</version>
<version>4.7.0.0</version>
<executions>
<execution>
<id>finding-bugs</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
</plugin>
Expand All @@ -421,12 +424,12 @@

<profiles>
<profile>
<id>jdk17</id>
<id>jdk11plus</id>
<activation>
<jdk>[17,)</jdk>
<jdk>[11,)</jdk>
</activation>
<properties>
<jvm.options>--add-opens java.base/java.security=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</jvm.options>
<client.jvm.jpms.args>--add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.security=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.management/javax.management=ALL-UNNAMED --add-opens=java.naming/javax.naming=ALL-UNNAMED</client.jvm.jpms.args>
</properties>
</profile>
<profile>
Expand Down