Compare commits

..

No commits in common. "f7994e571e0d1ad30dec273f07b4774a40e1ec0f" and "e13041575b6f446c790ed9847f91757df532a431" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
bld.downloadExtensionJavadoc=false bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-jacoco-report:0.9.0-SNAPSHOT bld.extensions=com.uwyn.rife2:bld-jacoco-report:0.9.0-SNAPSHOT
bld.repositories=RIFE2_SNAPSHOTS,RIFE2_RELEASES,MAVEN_CENTRAL bld.repositories=MAVEN_LOCAL,RIFE2_SNAPSHOT,MAVEN_CENTRAL,RIFE2_RELEASES
bld.downloadLocation= bld.downloadLocation=
bld.version=1.7.1 bld.version=1.7.0

View file

@ -20,7 +20,7 @@ public class PmdOperationBuild extends Project {
public PmdOperationBuild() { public PmdOperationBuild() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "bld-pmd"; name = "bld-pmd";
version = version(0, 9, 2); version = version(0, 9, 2, "SNAPSHOT");
javaRelease = 17; javaRelease = 17;
downloadSources = true; downloadSources = true;
@ -31,7 +31,7 @@ public class PmdOperationBuild extends Project {
var rife2 = version(1,7,0); var rife2 = version(1,7,0);
scope(compile) scope(compile)
.include(dependency("com.uwyn.rife2", "rife2", rife2)) .include(dependency("com.uwyn.rife2", "rife2", rife2))
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 1))) .include(dependency("com.uwyn.rife2", "bld", rife2))
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd)); .include(dependency("net.sourceforge.pmd", "pmd-java", pmd));
scope(runtime) scope(runtime)
.include(dependency("net.sourceforge.pmd", "pmd-java", pmd)) .include(dependency("net.sourceforge.pmd", "pmd-java", pmd))
@ -77,4 +77,4 @@ public class PmdOperationBuild extends Project {
.fromProject(this) .fromProject(this)
.execute(); .execute();
} }
} }