Compare commits

..

No commits in common. "a4e11dfb60537f7182a534386bf6a4505e8507b4" and "400c922d39999b6294028dddeb56f1a731f0bdda" have entirely different histories.

5 changed files with 6 additions and 6 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-2.2.1.jar!/" /> <root url="jar://$USER_HOME$/.bld/dist/bld-2.2.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-2.2.1-sources.jar!/" /> <root url="jar://$USER_HOME$/.bld/dist/bld-2.2.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

@ -9,7 +9,7 @@
], ],
"java.configuration.updateBuildConfiguration": "automatic", "java.configuration.updateBuildConfiguration": "automatic",
"java.project.referencedLibraries": [ "java.project.referencedLibraries": [
"${HOME}/.bld/dist/bld-2.2.1.jar", "${HOME}/.bld/dist/bld-2.2.0.jar",
"lib/**/*.jar" "lib/**/*.jar"
], ],
"java.compile.nullAnalysis.mode": "automatic" "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.extension-boot=com.uwyn.rife2:bld-spring-boot:1.0.2
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
bld.sourceDirectories= bld.sourceDirectories=
bld.version=2.2.1 bld.version=2.2.0

View file

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