Skip to content

Commit

Permalink
Merge pull request #66 from refinedmods/fix/GH-58/pitest
Browse files Browse the repository at this point in the history
fix: declare junit launcher for pitest
  • Loading branch information
raoulvdberge authored Aug 22, 2023
2 parents 1d5446d + af915cf commit 02ab19b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- Fixed more Pitest compatibility issues.

## [0.8.1] - 2023-08-20

### Fixed
Expand Down
9 changes: 7 additions & 2 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,17 @@ allprojects {
ext.enableMutationTesting = {
apply plugin: info.solidsoft.gradle.pitest.PitestPlugin
pitest {
junit5PluginVersion = "1.1.2"
pitestVersion = "1.10.4"
junit5PluginVersion = "1.2.0"
pitestVersion = "1.14.4"
outputFormats.set(['HTML'])
mutationThreshold.set(90)
coverageThreshold.set(80)
}
dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("required for pitest")
}
}
}

ext.enableJavadoc = {
Expand Down

0 comments on commit 02ab19b

Please sign in to comment.