Skip to content

Commit

Permalink
Merge pull request #371 from kstekovi/add-jpms-properties
Browse files Browse the repository at this point in the history
LOGMGR-308 add client.jvm.jpms.args property for specifying JPMS
  • Loading branch information
jamezp authored Jun 9, 2022
2 parents 576a4fe + 8b9107e commit f97a056
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<maven.compiler.target>8</maven.compiler.target>

<jdk.min.version>9</jdk.min.version>
<client.jvm.jpms.args></client.jvm.jpms.args>
</properties>

<dependencies>
Expand Down Expand Up @@ -232,7 +233,7 @@
<includes>
<include>**/*Tests.java</include>
</includes>
<argLine>-Djdk.attach.allowAttachSelf=true -Djava.util.logging.manager=org.jboss.logmanager.LogManager</argLine>
<argLine>-Djdk.attach.allowAttachSelf=true -Djava.util.logging.manager=org.jboss.logmanager.LogManager ${client.jvm.jpms.args}</argLine>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<test.log.dir>${project.build.directory}${file.separator}logs${file.separator}</test.log.dir>
Expand Down

0 comments on commit f97a056

Please sign in to comment.