Skip to content

Commit

Permalink
Merge pull request #814 from dmatej/maven
Browse files Browse the repository at this point in the history
Fixed deprecated syntax (surefire plugin's sys properties)
  • Loading branch information
dmatej authored Mar 28, 2023
2 parents e231c8f + 55164e2 commit c19b8db
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,14 +170,14 @@
<springcontext.version>6.0.7</springcontext.version>
<guice.version>5.1.0</guice.version>
<protobuf.version>3.22.2</protobuf.version>
<legal.doc.source>${maven.multiModuleProjectDirectory}/</legal.doc.source>

<legal.doc.source>${maven.multiModuleProjectDirectory}/</legal.doc.source>

<findbugs.exclude />
<findbugs.threshold>High</findbugs.threshold>
<surefireArgLineExtra />
<release.arguments />

<manifest.location>target/classes/META-INF/MANIFEST.MF</manifest.location>
</properties>

Expand Down Expand Up @@ -227,12 +227,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
<value>logging.properties</value>
</property>
</systemProperties>
<systemPropertyVariables>
<java.util.logging.config.file>logging.properties</java.util.logging.config.file>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -625,7 +622,7 @@
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>${jakarta.enterprise.cdi-api.version}</version>
<version>${jakarta.enterprise.cdi-api.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
Expand Down

0 comments on commit c19b8db

Please sign in to comment.