diff --git a/.idea/libraries/bld.xml b/.idea/libraries/bld.xml index ca84ff0..bff4f62 100644 --- a/.idea/libraries/bld.xml +++ b/.idea/libraries/bld.xml @@ -2,12 +2,12 @@ - + - + diff --git a/.vscode/settings.json b/.vscode/settings.json index 133aa45..1b057c3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,8 +7,10 @@ ], "java.configuration.updateBuildConfiguration": "automatic", "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/provided/*.jar", "lib/runtime/*.jar", "lib/test/*.jar" ] diff --git a/lib/bld/bld-wrapper.jar b/lib/bld/bld-wrapper.jar index 4e258ee..83ed707 100644 Binary files a/lib/bld/bld-wrapper.jar and b/lib/bld/bld-wrapper.jar differ diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties index 075e951..f481ee0 100644 --- a/lib/bld/bld-wrapper.properties +++ b/lib/bld/bld-wrapper.properties @@ -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.downloadLocation= bld.sourceDirectories= -bld.version=1.7.5 +bld.version=1.8.0 diff --git a/src/bld/java/com/example/springboot/ApplicationBuild.java b/src/bld/java/com/example/springboot/ApplicationBuild.java index 667c215..381204f 100644 --- a/src/bld/java/com/example/springboot/ApplicationBuild.java +++ b/src/bld/java/com/example/springboot/ApplicationBuild.java @@ -29,8 +29,8 @@ public class ApplicationBuild extends WebProject { .include(dependency("org.springframework.boot:spring-boot-starter-web:3.2.2")); scope(test) .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.platform:junit-platform-console-standalone:1.10.1")); + .include(dependency("org.junit.jupiter:junit-jupiter:5.10.2")) + .include(dependency("org.junit.platform:junit-platform-console-standalone:1.10.2")); scope(standalone) .include(dependency("org.springframework.boot:spring-boot-loader:3.2.2")); } @@ -52,4 +52,4 @@ public class ApplicationBuild extends WebProject { .fromProject(this) .execute(); } -} \ No newline at end of file +}