Bumped to bld 1.8.0

This commit is contained in:
Erik C. Thauvin 2024-02-08 11:54:36 -08:00
parent 3cbdc32e17
commit aed9a2ea2e
5 changed files with 9 additions and 7 deletions

View file

@ -2,12 +2,12 @@
<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.5.jar!/" /> <root url="jar://$USER_HOME$/.bld/dist/bld-1.8.0.jar!/" />
</CLASSES> </CLASSES>
<JAVADOC /> <JAVADOC />
<SOURCES> <SOURCES>
<root url="file://$PROJECT_DIR$/lib/bld" /> <root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-1.7.5-sources.jar!/" /> <root url="jar://$USER_HOME$/.bld/dist/bld-1.8.0-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,8 +7,10 @@
], ],
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [ "java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-1.7.5.jar", "${HOME}/.bld/dist/bld-1.8.0.jar",
"lib/bld/*.jar",
"lib/compile/*.jar", "lib/compile/*.jar",
"lib/provided/*.jar",
"lib/runtime/*.jar", "lib/runtime/*.jar",
"lib/test/*.jar" "lib/test/*.jar"
] ]

Binary file not shown.

View file

@ -4,4 +4,4 @@ bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.0-SNAPSHOT
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.downloadLocation= bld.downloadLocation=
bld.sourceDirectories= bld.sourceDirectories=
bld.version=1.7.5 bld.version=1.8.0

View file

@ -29,8 +29,8 @@ public class ApplicationBuild extends WebProject {
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.2")); .include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.2"));
scope(test) scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.2")) .include(dependency("org.springframework.boot:spring-boot-starter-test:3.2.2"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.10.1")) .include(dependency("org.junit.jupiter:junit-jupiter:5.10.2"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.1")); .include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2"));
scope(standalone) scope(standalone)
.include(dependency("org.springframework.boot:spring-boot-loader:3.2.2")); .include(dependency("org.springframework.boot:spring-boot-loader:3.2.2"));
} }