Compare commits

...

2 commits

Author SHA1 Message Date
67ce6546fe
Version 1.2.1 2025-02-28 11:08:20 -08:00
cfbeeeb5c7
Bump PMD to version 7.11.0 2025-02-28 11:04:50 -08:00

View file

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