Skip to content

Commit

Permalink
modified code coverage in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobrehmann committed Dec 10, 2024
1 parent e972f3c commit 36e5a85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,15 +272,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0-M9</version>
<configuration>
<excludes>
<exclude>**/*$*</exclude> <!-- exclude all inner classes -->
</excludes>
<!-- Don't run multiple tests in one jvm! Class mocking interferes with the integration test -->
<reuseForks>false</reuseForks>
<forkCount>1</forkCount>
<!-- avoid out of memory errors: -->
<argLine>-Xmx6000m -Djava.awt.headless=true -Dmatsim.preferLocalDtds=true</argLine>
<argLine>@{argLine} -Xmx6500m -Djava.awt.headless=true -Dmatsim.preferLocalDtds=true</argLine>
</configuration>
</plugin>

Expand Down Expand Up @@ -435,7 +435,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 36e5a85

Please sign in to comment.