Skip to content

Commit

Permalink
improve surefire configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlocker8 committed Feb 26, 2023
1 parent c4b7f86 commit 197332e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions BudgetMasterServer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<opencsv.version>5.7.1</opencsv.version>
<datatables.version>1.13.2</datatables.version>
<jakarta.xml.bind-api.version>4.0.0</jakarta.xml.bind-api.version>
<junit-jupiter-engine.version>5.9.2</junit-jupiter-engine.version>

<project.outputDirectory>${project.build.directory}/../build/${project.version}</project.outputDirectory>
<project.artifactName>${project.artifactId}-v${project.version}</project.artifactName>
Expand Down Expand Up @@ -264,11 +265,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M6</version>
<version>3.0.0-M9</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-engine.version}</version>
</dependency>
</dependencies>
<configuration>
<junitArtifactName>junit:junit</junitArtifactName>
<!--suppress MavenModelInspection -->
<argLine>${surefireArgLine} -Dfile.encoding=UTF-8</argLine>

<systemPropertyVariables>
<testProfile>true</testProfile>
</systemPropertyVariables>
Expand Down

0 comments on commit 197332e

Please sign in to comment.