Skip to content

Commit

Permalink
➕ : add pitest configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
juwit committed Jan 9, 2020
1 parent 42d531c commit a96ac1f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,25 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.4.10</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>0.10</version>
</dependency>
</dependencies>
<configuration>
<excludedTestClasses>*IT</excludedTestClasses>
<avoidCallsTo>
<avoidCallsTo>kotlin.jvm.internal</avoidCallsTo>
</avoidCallsTo>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit a96ac1f

Please sign in to comment.