Skip to content

Commit

Permalink
Bumped PMD to version 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Apr 26, 2024
1 parent 242ae43 commit 9954e94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bld/java/rife/bld/extension/PmdOperationBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ public class PmdOperationBuild extends Project {
public PmdOperationBuild() {
pkg = "rife.bld.extension";
name = "bld-pmd";
version = version(0, 9, 8);
version = version(0, 9, 9);

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

var pmd = version(7, 0, 0);
var pmd = version(7, 1, 0);
scope(compile)
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 0)))
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd));
scope(runtime)
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd))
.include(dependency("org.slf4j", "slf4j-simple", version(2, 0, 12)));
.include(dependency("org.slf4j", "slf4j-simple", version(2, 0, 13)));
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)))
Expand Down Expand Up @@ -78,7 +78,7 @@ public PmdOperationBuild() {
.license(
new PublishLicense()
.name("The Apache License, Version 2.0")
.url("http://www.apache.org/licenses/LICENSE-2.0.txt")
.url("https://www.apache.org/licenses/LICENSE-2.0.txt")
)
.scm(
new PublishScm()
Expand Down

0 comments on commit 9954e94

Please sign in to comment.