diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties index 90dc8b5..92d1104 100644 --- a/lib/bld/bld-wrapper.properties +++ b/lib/bld/bld-wrapper.properties @@ -1,6 +1,6 @@ bld.downloadExtensionJavadoc=false bld.downloadExtensionSources=true bld.extensions=com.uwyn.rife2:bld-jacoco-report:0.9.0-SNAPSHOT -bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOTS,MAVEN_CENTRAL,RIFE2_RELEASES +bld.repositories=RIFE2_SNAPSHOTS,RIFE2_RELEASES,MAVEN_CENTRAL bld.downloadLocation= -bld.version=1.7.0 +bld.version=1.7.1 diff --git a/src/bld/java/rife/bld/extension/PmdOperationBuild.java b/src/bld/java/rife/bld/extension/PmdOperationBuild.java index ae8ceef..10fd058 100644 --- a/src/bld/java/rife/bld/extension/PmdOperationBuild.java +++ b/src/bld/java/rife/bld/extension/PmdOperationBuild.java @@ -20,7 +20,7 @@ public class PmdOperationBuild extends Project { public PmdOperationBuild() { pkg = "rife.bld.extension"; name = "bld-pmd"; - version = version(0, 9, 2, "SNAPSHOT"); + version = version(0, 9, 2); javaRelease = 17; downloadSources = true; @@ -31,7 +31,7 @@ public class PmdOperationBuild extends Project { var rife2 = version(1,7,0); scope(compile) .include(dependency("com.uwyn.rife2", "rife2", rife2)) - .include(dependency("com.uwyn.rife2", "bld", rife2)) + .include(dependency("com.uwyn.rife2", "bld", version(1, 7, 1))) .include(dependency("net.sourceforge.pmd", "pmd-java", pmd)); scope(runtime) .include(dependency("net.sourceforge.pmd", "pmd-java", pmd)) @@ -77,4 +77,4 @@ public class PmdOperationBuild extends Project { .fromProject(this) .execute(); } -} \ No newline at end of file +}