2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 08:17:11 -07:00

Updated bld itself to v1.7.0-SNAPSHOT

This commit is contained in:
Geert Bevin 2023-05-11 08:45:11 -04:00
parent 4110f1dcb9
commit 800db71c97
4 changed files with 10 additions and 4 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.3.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.3-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!/" />

Binary file not shown.

View file

@ -4,5 +4,5 @@ bld.extension-antlr=com.uwyn.rife2:bld-antlr4:1.1.0
bld.extension-archive=com.uwyn.rife2:bld-archive:0.3.0
bld.extension-tests=com.uwyn.rife2:bld-tests-badge:1.3.0
bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES
rife2.downloadLocation=
rife2.version=1.6.3
bld.downloadLocation=
bld.version=1.7.0-SNAPSHOT

View file

@ -248,6 +248,12 @@ public class BldBuild extends Project {
super.publish();
}
public void publishLocal()
throws Exception {
all();
super.publishLocal();
}
public static void main(String[] args)
throws Exception {
new BldBuild().start(args);