-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
Support for PMD 7.0 #24502
Comments
Thank you for your interest in Gradle! This feature request is in the backlog of the relevant team but this area of Gradle is currently not a focus one so it might take a while before it gets implemented. If you are interested in contributing to Gradle, this issue is actionable and ready for contribution but might be challenging for first-time contributors. See CONTRIBUTING.md for more information. |
#25122 resolves the dependency issue noted in the original post. In order to resolve this issue fully and for Gradle to officially support PMD 7.0, |
<!--- The issue this PR addresses --> Related to #24502 The default rules still need some adressing. ### Context PMD 7.0.0 introduces major improvements, give gradle users the chance to upgrade ### Contributor Checklist - [X] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md) - [X] Make sure that all commits are [signed off](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff) to indicate that you agree to the terms of [Developer Certificate of Origin](https://developercertificate.org/). - [X] Make sure all contributed code can be distributed under the terms of the [Apache License 2.0](https://github.com/gradle/gradle/blob/master/LICENSE), e.g. the code was written by yourself or the original code is licensed under [a license compatible to Apache License 2.0](https://apache.org/legal/resolved.html). - [X] Check ["Allow edit from maintainers" option](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) in pull request so that additional changes can be pushed by Gradle team - [ ] Provide integration tests (under `<subproject>/src/integTest`) to verify changes from a user perspective - [X] Provide unit tests (under `<subproject>/src/test`) to verify logic - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes - [X] Ensure that tests pass sanity check: `./gradlew sanityCheck` - [X] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest` ### Gradle Core Team Checklist - [ ] Verify design and implementation - [ ] Verify test coverage and CI build status - [ ] Verify documentation Co-authored-by: Patrick Brueckner <[email protected]>
Is this issue resolved, with gradle 8.5 and toolVersion 7.0.0-rc4 and I am still getting |
You may identify the currently used PMD version here: It's defined in a constant DEFAULT_PMD_VERSION |
Actually the code treats I've created PR to fix it: #27247. |
Still an issue ... pmd {
toolVersion = "7.0.0"
} ./gradlew pmdMain
> Task :pmdMain FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':pmdMain'.
> A failure occurred while executing org.gradle.api.plugins.quality.internal.PmdAction
> java.lang.ClassNotFoundException: net.sourceforge.pmd.ant.PMDTask
$ ./gradlew --version
------------------------------------------------------------
Gradle 8.7
------------------------------------------------------------
Build time: 2024-03-22 15:52:46 UTC
Revision: 650af14d7653aa949fce5e886e685efc9cf97c10
Kotlin: 1.9.22
Groovy: 3.0.17
Ant: Apache Ant(TM) version 1.10.13 compiled on January 4 2023
JVM: 17.0.10 (Eclipse Adoptium 17.0.10+7)
OS: Mac OS X 12.7.4 x86_64 The workaround mentioned in #24502 (comment) still works: dependencies {
pmd("net.sourceforge.pmd:pmd-ant:7.0.0")
pmd("net.sourceforge.pmd:pmd-java:7.0.0")
} |
With the simple test project at https://github.com/pmd/pmd-examples/tree/main/gradle/simple-project I cannot reproduce the problem. For me, it generally works since gradle 8.6. I also confirmed, that it is still working with gradle 8.7. Of course, only for my little example project. I played around a bit with The relevant lines are here: gradle/platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java Lines 192 to 207 in 4437480
|
I tried reproducing it with your project and: $ mkdir /tmp/gradle-pmd-toolversion-7 && cd "$_"
$ mkdir -p src/main/java
$ printf 'rootProject.name = "gradle-pmd-toolversion-7"' > settings.gradle.kts
$ printf 'plugins {
`java-library`
pmd
}
repositories {
mavenCentral()
}
pmd {
toolVersion = "7.0.0"
}' > build.gradle.kts
$ printf 'class Example {}' > src/main/java/Example.java
$ gradle wrapper --gradle-version=8.7
$ ./gradlew pmdMain
$ ./gradlew --no-daemon --no-build-cache --no-configuration-cache --no-configure-on-demand --rerun-tasks clean pmdMain In both cases I could not reproduce it anymore—in other words: the combination of PMD 7 and Gradle 8.7 works. Guess it was a file lock or cache problem yesterday 🤷 |
This works for me as well when removing my workaround. I'd recommend stopping the daemon and retrying @sdavids. I've had a few cases where leaks across builds cause confusion due to the persistent java compiler, which is a relatively recent improvement to reduce build times. However, sometimes there are class leaks from canceled builds, so maybe in the classpath too. Use |
oops, missed the race. looks like I can close. Thanks for supporting v7! |
Expected Behavior
Use the new major version for static analysis. The current release version works great (6.55.0).
Current Behavior
I am able to run the analysis after making these dependency additions for a Java project.
This results then in rule failures which seem reasonable,
Context
Hopefully it is not a choice of either 6.x or 7.x so supporting a release candidate is acceptable. The default tool version shouldn't change until after the final release, of course.
The text was updated successfully, but these errors were encountered: