Skip to content

Commit

Permalink
GMS-85 Github warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-szrnka committed Dec 20, 2023
1 parent 9884f4d commit 23ce79e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion code/gms-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<backend.buildname>gms-app</backend.buildname>
<spring-boot.version>3.2.0</spring-boot.version>
<guava.version>32.0.0-jre</guava.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.2.1</maven-surefire-plugin.version>
<flyway.version>9.22.3</flyway.version>
<jjwt.version>0.11.1</jjwt.version>
<!-- Testing & code quality -->
Expand Down Expand Up @@ -373,11 +373,29 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<argLine>@{argLine} -Xshare:off</argLine>
<parallel>all</parallel>
<printSummary>true</printSummary>
<forkCount>1</forkCount>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<argLine>@{argLine} -Xshare:off</argLine>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand Down

0 comments on commit 23ce79e

Please sign in to comment.