Skip to content

Commit

Permalink
Bumped PMD to version 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 31, 2024
1 parent bcaab9b commit b6df5df
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/bld/java/rife/bld/extension/PmdOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@ public class PmdOperationBuild extends Project {
public PmdOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-pmd";
version = version(1, 0, 0, "SNAPSHOT");
version = version(1, 0, 0);

javaRelease = 17;

downloadSources = true;
autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);

var pmd = version(7, 1, 0);
var pmd = version(7, 2, 0);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 1)))
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd));
Expand All @@ -51,7 +52,7 @@ public PmdOperationBuild() {
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));
.include(dependency("org.assertj", "assertj-core", version(3, 26, 0)));

javadocOperation()
.javadocOptions()
Expand Down

0 comments on commit b6df5df

Please sign in to comment.