Currently in my build script I have to add
buildscript {
repositories {
mavenCentral()
}
configurations.maybeCreate("pitest")
dependencies {
pitest 'org.pitest:pitest-junit5-plugin:0.10'
}
}
so that pitest will support my junit5 tests. This is very ugly since everything else I can just define using the more modern plugins configuration. Is there any chance you could release a different plugin that already includes the junit5 dependency so I can remove this code from my build.gradle file?
Currently in my build script I have to add
so that pitest will support my junit5 tests. This is very ugly since everything else I can just define using the more modern
pluginsconfiguration. Is there any chance you could release a different plugin that already includes the junit5 dependency so I can remove this code from my build.gradle file?