Skip to content

Commit

Permalink
Bumped PMD to version 7.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jul 27, 2024
1 parent a253342 commit 9cb3191
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bld/java/rife/bld/extension/PmdOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ 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;

downloadSources = true;
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))
Expand Down

0 comments on commit 9cb3191

Please sign in to comment.