We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
Grepping the sources there are 2 places where baseDir property is used (PitestPlugin.groovy, line 108, and PitestAggregatorPlugin.groovy, line 132):
baseDir
PitestPlugin.groovy
PitestAggregatorPlugin.groovy
gradle-pitest-plugin/src/main/groovy/info/solidsoft/gradle/pitest/PitestPlugin.groovy 132: extension.reportDir.set(new File(project.extensions.getByType(ReportingExtension).baseDir, PITEST_REPORT_DIRECTORY_NAME)) gradle-pitest-plugin/src/main/groovy/info/solidsoft/gradle/pitest/PitestAggregatorPlugin.groovy 69: reportDir.set(new File(getReportBaseDirectory(), PitestPlugin.PITEST_REPORT_DIRECTORY_NAME)) 106: private File getReportBaseDirectory() { 108: return project.extensions.getByType(ReportingExtension).baseDir
It looks like the baseDirectory property was introduced in gradle 8.12 only. Documentation for gradle 8.11 still refers to baseDir property https://docs.gradle.org/8.11/dsl/org.gradle.api.reporting.ReportingExtension.html
baseDirectory
gradle 8.12
Sorry, something went wrong.
Exactly! I'm use gradle 8.12
Groovy can call "things" dynamically, so it should be possible to choose what to use, keeping the compatibility with Gradle 8.12.
Thanks for spotting it out.
No branches or pull requests
The text was updated successfully, but these errors were encountered: