WIP update for bld 1.7.0

This commit is contained in:
Geert Bevin 2023-05-11 10:19:43 -04:00
parent cfb40d98b7
commit b54ab456e8
5 changed files with 10 additions and 10 deletions

View file

@ -2,11 +2,11 @@
<library name="bld"> <library name="bld">
<CLASSES> <CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" /> <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> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES> <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> </SOURCES>
<excluded> <excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" /> <root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

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

Binary file not shown.

View file

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

View file

@ -20,20 +20,20 @@ public class Antlr4Build extends Project {
public Antlr4Build() { public Antlr4Build() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "Antlr4"; name = "Antlr4";
version = version(1,1,0); version = version(1,2,0,"SNAPSHOT");
archiveBaseName = "bld-antlr4"; archiveBaseName = "bld-antlr4";
javaRelease = 17; javaRelease = 17;
downloadSources = true; downloadSources = true;
autoDownloadPurge = true; autoDownloadPurge = true;
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES); repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES, SONATYPE_SNAPSHOTS);
scope(compile) 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.antlr", "antlr4", version(4,11,1))); .include(dependency("org.antlr", "antlr4", version(4,11,1)));
scope(test) scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,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,2))); .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,9,3)));
javadocOperation() javadocOperation()
.javadocOptions() .javadocOptions()