2
0
Fork 0
mirror of https://github.com/ethauvin/rife2.git synced 2025-04-30 10:38:12 -07:00

Tweaks for updated bld version

This commit is contained in:
Geert Bevin 2023-04-06 14:51:14 -04:00
parent 00d6465883
commit 4232f38d64
3 changed files with 5 additions and 5 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.5.18-SNAPSHOT2.jar!/" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-SNAPSHOT3.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-SNAPSHOT2-sources.jar!/" />
<root url="jar://$USER_HOME$/.rife2/dist/rife2-1.5.18-SNAPSHOT3-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -3,4 +3,4 @@ bld.downloadExtensionSources=true
bld.extensions=com.uwyn.rife2:bld-antlr4:0.9.6
bld.repositories=MAVEN_CENTRAL,https://repo.rife2.com/snapshots,RIFE2
rife2.downloadLocation=https://uwyn.com
rife2.version=1.5.18-SNAPSHOT2
rife2.version=1.5.18-SNAPSHOT3

View file

@ -18,13 +18,13 @@ public class ExamplesBuild extends WebProject {
mainClass = "rife.HelloAll";
version = version(1,0,0);
precompiledTemplateTypes = List.of(HTML);
srcDirectory = new File(workDirectory(), "examples");
buildMainDirectory = new File(buildDirectory(), "main_examples");
buildTestDirectory = new File(buildDirectory(), "test_examples");
libStandaloneDirectory = libTestDirectory();
precompileOperation()
.templateTypes(HTML);
compileOperation()
.compileMainClasspath(mainBuild.buildMainDirectory().getAbsolutePath())
.compileTestClasspath(mainBuild.buildMainDirectory().getAbsolutePath());