mirror of
https://github.com/ethauvin/rife2-bld-hello.git
synced 2025-04-26 09:17:12 -07:00
Updated to latest bld and RIFE2
This commit is contained in:
parent
5b1610a476
commit
6a32686cbb
5 changed files with 11 additions and 11 deletions
4
.idea/libraries/bld.xml
generated
4
.idea/libraries/bld.xml
generated
|
@ -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$/.bld/dist/bld-1.7.4.jar!/" />
|
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5.jar!/" />
|
||||||
</CLASSES>
|
</CLASSES>
|
||||||
<JAVADOC />
|
<JAVADOC />
|
||||||
<SOURCES>
|
<SOURCES>
|
||||||
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.4-sources.jar!/" />
|
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5-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!/" />
|
||||||
|
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -8,7 +8,7 @@
|
||||||
],
|
],
|
||||||
"java.configuration.updateBuildConfiguration": "automatic",
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"${HOME}/.bld/dist/bld-1.7.4.jar",
|
"${HOME}/.bld/dist/bld-1.7.5.jar",
|
||||||
"lib/compile/*.jar",
|
"lib/compile/*.jar",
|
||||||
"lib/runtime/*.jar",
|
"lib/runtime/*.jar",
|
||||||
"lib/standalone/*.jar",
|
"lib/standalone/*.jar",
|
||||||
|
|
Binary file not shown.
|
@ -3,4 +3,4 @@ bld.downloadExtensionSources=true
|
||||||
bld.extensions=
|
bld.extensions=
|
||||||
bld.repositories=MAVEN_CENTRAL,RIFE2
|
bld.repositories=MAVEN_CENTRAL,RIFE2
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
bld.version=1.7.4
|
bld.version=1.7.5
|
||||||
|
|
|
@ -22,15 +22,15 @@ public class AppBuild extends WebProject {
|
||||||
|
|
||||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||||
scope(compile)
|
scope(compile)
|
||||||
.include(dependency("com.uwyn.rife2", "rife2", version(1,7,2)));
|
.include(dependency("com.uwyn.rife2", "rife2", version(1,7,3)));
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.jsoup", "jsoup", version(1,16,1)))
|
.include(dependency("org.jsoup", "jsoup", version(1,16,2)))
|
||||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,9,3)))
|
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5,10,0)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,9,3)));
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1,10,0)));
|
||||||
scope(standalone)
|
scope(standalone)
|
||||||
.include(dependency("org.eclipse.jetty", "jetty-server", version(11,0,15)))
|
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10", version(12,0,2)))
|
||||||
.include(dependency("org.eclipse.jetty", "jetty-servlet", version(11,0,15)))
|
.include(dependency("org.eclipse.jetty.ee10", "jetty-ee10-servlet", version(12,0,2)))
|
||||||
.include(dependency("org.slf4j", "slf4j-simple", version(2,0,7)));
|
.include(dependency("org.slf4j", "slf4j-simple", version(2,0,9)));
|
||||||
|
|
||||||
precompileOperation()
|
precompileOperation()
|
||||||
.templateTypes(HTML);
|
.templateTypes(HTML);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue