Bumped PMD to version 7.4.0

This commit is contained in:
Erik C. Thauvin 2024-07-26 19:59:01 -07:00
parent a253342bd6
commit 9cb3191dd4
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -31,7 +31,7 @@ public class PmdOperationBuild extends Project {
public PmdOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-pmd";
version = version(1, 1, 3, "SNAPSHOT");
version = version(1, 1, 3);
javaRelease = 17;
@ -39,9 +39,9 @@ public class PmdOperationBuild extends Project {
autoDownloadPurge = true;
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES, RIFE2_SNAPSHOTS);
var pmd = version(7, 3, 0);
var pmd = version(7, 4, 0);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(2, 0, 0, "SNAPSHOT")))
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 1)))
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd));
scope(runtime)
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd))