Compare commits

...

2 commits

Author SHA1 Message Date
a4e11dfb60
Bump bld to version 2.2.1 2025-02-25 10:13:04 -08:00
bb976f194a
Bump JUnit to version 5.12.0 2025-02-23 17:22:47 -08:00
5 changed files with 6 additions and 6 deletions

View file

@ -2,12 +2,12 @@
<library name="bld">
<CLASSES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.0.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="file://$PROJECT_DIR$/lib/bld" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.0-sources.jar!/" />
<root url="jar://$USER_HOME$/.bld/dist/bld-2.2.1-sources.jar!/" />
</SOURCES>
<excluded>
<root url="jar://$PROJECT_DIR$/lib/bld/bld-wrapper.jar!/" />

View file

@ -9,7 +9,7 @@
],
"java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-2.2.0.jar",
"${HOME}/.bld/dist/bld-2.2.1.jar",
"lib/**/*.jar"
],
"java.compile.nullAnalysis.mode": "automatic"

Binary file not shown.

View file

@ -4,4 +4,4 @@ bld.downloadLocation=
bld.extension-boot=com.uwyn.rife2:bld-spring-boot:1.0.2
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories=
bld.version=2.2.0
bld.version=2.2.1

View file

@ -29,8 +29,8 @@ public class ApplicationBuild extends WebProject {
.include(dependency("org.springframework.boot:spring-boot-starter-web:3.4.3"));
scope(test)
.include(dependency("org.springframework.boot:spring-boot-starter-test:3.4.3"))
.include(dependency("org.junit.jupiter:junit-jupiter:5.11.4"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.11.4"));
.include(dependency("org.junit.jupiter:junit-jupiter:5.12.0"))
.include(dependency("org.junit.platform:junit-platform-console-standalone:1.12.0"));
scope(standalone)
.include(dependency("org.springframework.boot:spring-boot-loader:3.4.3"));
}