Skip to content
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

Closed
ben-manes opened this issue Mar 25, 2023 · 10 comments · Fixed by #28560
Closed

Support for PMD 7.0 #24502

ben-manes opened this issue Mar 25, 2023 · 10 comments · Fixed by #28560
Labels
a:feature A new functionality 🌳 help wanted Taking contributor PRs, might need existing Gradle knowledge in:pmd-plugin
Milestone

Comments

@ben-manes
Copy link
Contributor

Expected Behavior

Use the new major version for static analysis. The current release version works great (6.55.0).

Current Behavior

  1. The analysis fails due to a missing class because the ant task used by PmdInvoker belongs to a separate dependency.
  2. The rules are no longer bundled, so they also have to be added explicitly.

I am able to run the analysis after making these dependency additions for a Java project.

pmd 'net.sourceforge.pmd:pmd-ant:7.0.0-rc1'
pmd 'net.sourceforge.pmd:pmd-java:7.0.0-rc1'

This results then in rule failures which seem reasonable,

  1. Removed rules not matching the excludes pattern
  2. New or updated rules detecting problems, which need to be addressed or suppressed.

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.

@ov7a
Copy link
Member

ov7a commented Mar 30, 2023

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.

@jvandort
Copy link
Member

#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, org.gradle.quality.integtest.fixtures.PmdCoverage would need to be updated to add an entry for 7.0.0-rc2 (or the most recent version) and verify all tests succeed.

bot-gradle added a commit that referenced this issue May 21, 2023
<!--- 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]>
@leandremucyo
Copy link

leandremucyo commented Dec 1, 2023

Is this issue resolved, with gradle 8.5 and toolVersion 7.0.0-rc4 and I am still getting ClassNotFoundException: net.sourceforge.pmd.ant.PMDTask

@OleksandrShkurat
Copy link

Is this issue resolved, with gradle 8.5 and toolVersion 7.0.0-rc4 and I am still getting ClassNotFoundException: net.sourceforge.pmd.ant.PMDTask

You may identify the currently used PMD version here:

https://github.com/gradle/gradle/blob/master/platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

It's defined in a constant DEFAULT_PMD_VERSION

@marcindabrowski
Copy link
Contributor

Actually the code treats 7.0.0-rc4 as lower than 7.0.0 and is not loading pmd-ant dependency.

I've created PR to fix it: #27247.

@sdavids
Copy link
Contributor

sdavids commented Mar 23, 2024

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")
}

@adangel
Copy link
Contributor

adangel commented Mar 24, 2024

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 --configuration-cache and --build-cache, but I still couldn't reproduce the problem: changing "toolVersion" in build.gradle, changes the file "build.gradle" which invalidates the configuration cache. This causes that the correct classpath to run PMD is used.

The relevant lines are here:

static Set<String> calculateDefaultDependencyNotation(final String versionString) {
final VersionNumber toolVersion = VersionNumber.parse(versionString);
if (toolVersion.compareTo(VersionNumber.version(5)) < 0) {
return Collections.singleton("pmd:pmd:" + versionString);
} else if (toolVersion.compareTo(VersionNumber.parse("5.2.0")) < 0) {
return Collections.singleton("net.sourceforge.pmd:pmd:" + versionString);
} else if (toolVersion.getMajor() < 7) {
return Collections.singleton("net.sourceforge.pmd:pmd-java:" + versionString);
}
// starting from version 7, PMD is split into multiple modules
return ImmutableSet.of(
"net.sourceforge.pmd:pmd-java:" + versionString,
"net.sourceforge.pmd:pmd-ant:" + versionString
);
}

@sdavids
Copy link
Contributor

sdavids commented Mar 24, 2024

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 🤷

@ben-manes
Copy link
Contributor Author

ben-manes commented Mar 24, 2024

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 ./gradlew --stop and retry.

@ben-manes
Copy link
Contributor Author

ben-manes commented Mar 24, 2024

oops, missed the race. looks like I can close. Thanks for supporting v7!

@ov7a ov7a added this to the 8.3 milestone Mar 25, 2024
@ov7a ov7a removed the to-triage label Mar 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:feature A new functionality 🌳 help wanted Taking contributor PRs, might need existing Gradle knowledge in:pmd-plugin
Projects
None yet
Development

Successfully merging a pull request may close this issue.

9 participants