WIP update for bld 1.7.0

This commit is contained in:
Geert Bevin 2023-05-11 10:22:22 -04:00
parent 763b33e66b
commit 4e8b2d0607
5 changed files with 10 additions and 10 deletions

View file

@ -2,11 +2,11 @@
<library name="bld">
<CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.6.0.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.0-SNAPSHOT.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.6.0-sources.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.0-SNAPSHOT-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -7,7 +7,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.rife2/dist/rife2-1.6.0.jar",
"${HOME}bld-1.7.0-SNAPSHOT.jar",
"lib/compile/*.jar",
"lib/runtime/*.jar",
"lib/test/*.jar"

Binary file not shown.

View file

@ -2,5 +2,5 @@ bld.downloadExtensionJavadoc=false
bld.downloadExtensionSources=true
bld.extensions=
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
rife2.downloadLocation=
rife2.version=1.6.0
bld.downloadLocation=
bld.version=1.7.0-SNAPSHOT

View file

@ -19,20 +19,20 @@ public class ArchiveBuild extends Project {
public ArchiveBuild() {
pkg = "rife.bld.extension";
name = "Archive";
version = version(0,3,0);
version = version(0,4,0,"SNAPSHOT");
archiveBaseName = "bld-archive";
javaRelease = 17;
downloadSources = true;
autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES, SONATYPE_SNAPSHOTS);
scope(compile)
.include(dependency("com.uwyn.rife2", "rife2", version(1,6,0)))
.include(dependency("com.uwyn.rife2", "bld", version(1,7,0,"SNAPSHOT")))
.include(dependency("org.apache.commons", "commons-compress", version(1,23,0)));
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,9,2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,9,3)));
javadocOperation()
.javadocOptions()