I tried to run gradle pitest for this Android project. It showed an error that says Task 'pitest' not found in root project. I have added the pitest plugin in the build.gradle.kts as follows:
plugins {
id("info.solidsoft.pitest") version "1.9.0"
}
For just the others bumping into that issues, this plugin is not compatible with the Android projects (just pure Java projects) and the Android fork should be used instead.
I tried to run
gradle pitest
for this Android project. It showed an error that says Task 'pitest' not found in root project. I have added the pitest plugin in thebuild.gradle.kts
as follows: