aaschmid / gradle-cpd-plugin

Gradle plugin to find duplicate code using PMDs copy/paste detection (= CPD).
Apache License 2.0
95 stars 12 forks source link

Bump pmd distribution package lib version #73

Closed t-joseph closed 3 months ago

t-joseph commented 3 months ago

The bumped version 6.11.0 contains the fix for https://github.com/pmd/pmd/issues/1196 which is relevant for our use-case.

aaschmid commented 3 months ago

Thanks for the PR.

You know that you can also use config to bump version like

cpd {
    toolVersion = '6.11.1'
}

And the default in latest version 3.3 is "6.14.0"?

What you changes are only the compile time and test dependencies. They are not bundled with the plugin itself.

t-joseph commented 3 months ago

Thanks for the PR.

You know that you can also use config to bump version like

cpd {
    toolVersion = '6.11.1'
}

And the default in latest version 3.3 is "6.14.0"?

What you changes are only the compile time and test dependencies. They are not bundled with the plugin itself.

Thanks for the reply. I tested with v3.4 and issue seems to be fixed with the current latest version. I will close this PR.