Skip to content

Commit

Permalink
Configure 'pitest' profile (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Oct 7, 2024
1 parent 565dd74 commit 7bb68e9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,32 @@
</plugins>
</build>
</profile>

<profile>
<id>pitest</id>
<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.17.0</version>
<configuration>
<excludedTestClasses>
<excludedTestClass>*ArchitectureTest</excludedTestClass>
</excludedTestClasses>
</configuration>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>

</profiles>

<dependencies>
Expand Down

0 comments on commit 7bb68e9

Please sign in to comment.