File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,26 +40,19 @@ For Pitest configuration options, have a look at http://pitest.org/quickstart/ma
4040### Gradle
4141
4242```
43- buildscript {
44- repositories {
45- mavenCentral()
46- }
47- configurations.maybeCreate("pitest")
48- dependencies {
49- classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.5'
50- pitest 'org.pitest:pitest-junit5-plugin:0.10'
51- }
43+ plugins {
44+ id 'java'
45+ id 'info.solidsoft.pitest' version '1.4.9'
5246}
5347
54- apply plugin: "info.solidsoft.pitest"
55-
5648pitest {
57- pitestVersion = "1.4.9 "
58- testPlugin = "junit5"
59- targetClasses = ['our.base.package.*'] // by default "${project.group}.*"
49+ //adds dependency to org.pitest:pitest-junit5-plugin and sets "testPlugin" to "junit5 "
50+ junit5PluginVersion = '0.12'
51+ // ...
6052}
6153```
62- See [ gradle-pitest-plugin documentation] ( http://gradle-pitest-plugin.solidsoft.info/ ) for more configuration options.
54+
55+ See [ gradle-pitest-plugin documentation] ( https://github.com/szpak/gradle-pitest-plugin#pit-test-plugins-support ) for more configuration options.
6356
6457## About
6558
You can’t perform that action at this time.
0 commit comments