From f9d85c870cea2d2b81192b19d92412886b7233a3 Mon Sep 17 00:00:00 2001
From: "Erik C. Thauvin" <erik@thauvin.net>
Date: Thu, 20 Jun 2024 18:37:19 -0700
Subject: [PATCH] Added support for Spring Boot 3.3.1

---
 lib/bld/bld-wrapper.jar                       | Bin 27319 -> 27319 bytes
 lib/bld/bld-wrapper.properties                |   4 ++--
 .../example/springboot/ApplicationBuild.java  |  10 +++++-----
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/lib/bld/bld-wrapper.jar b/lib/bld/bld-wrapper.jar
index 98ef189674da689fd56c7903170cea949ce414c5..6e55c4304033a8c4cc5e2a9fa9688aab3756442d 100644
GIT binary patch
delta 131
zcmdmfm2vx3M&1B#W)=|!4h{~6(7qEBdFz;g)W$v~V-UT0vvD^QnBi!~t_Nm#r<`X5
wGi1{Y!BUe0GweYElP705gXx<Yo?u!vGXzZ6WV(XsBbjj!@hpEZU7qCt0CyTQH2?qr

delta 131
zcmdmfm2vx3M&1B#W)=|!4h{~64?T+~^42i}sf~R~#vpq0X5(%qFvHP|T@TFgPC3sA
wX2_-)f~6)0X4r!SCQr_A2Gch)Ji)YTW(b(B$#ezNM>69e;#vM+x;)DP0QpThjQ{`u

diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties
index 1ab774a..aba8240 100644
--- a/lib/bld/bld-wrapper.properties
+++ b/lib/bld/bld-wrapper.properties
@@ -1,7 +1,7 @@
 bld.downloadExtensionJavadoc=false
 bld.downloadExtensionSources=true
-bld.extensions=com.uwyn.rife2:bld-spring-boot:0.9.4
-bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
 bld.downloadLocation=
+bld.extension-boot=com.uwyn.rife2:bld-spring-boot:0.9.5
+bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
 bld.sourceDirectories=
 bld.version=1.9.1
diff --git a/src/bld/java/com/example/springboot/ApplicationBuild.java b/src/bld/java/com/example/springboot/ApplicationBuild.java
index a4a6ab2..08490f7 100644
--- a/src/bld/java/com/example/springboot/ApplicationBuild.java
+++ b/src/bld/java/com/example/springboot/ApplicationBuild.java
@@ -24,15 +24,15 @@ public ApplicationBuild() {
         repositories = List.of(MAVEN_CENTRAL);
 
         scope(compile)
-                .include(dependency("org.springframework.boot:spring-boot-starter:3.3.0"))
-                .include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.0"))
-                .include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.0"));
+                .include(dependency("org.springframework.boot:spring-boot-starter:3.3.1"))
+                .include(dependency("org.springframework.boot:spring-boot-starter-actuator:3.3.1"))
+                .include(dependency("org.springframework.boot:spring-boot-starter-web:3.3.1"));
         scope(test)
-                .include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.0"))
+                .include(dependency("org.springframework.boot:spring-boot-starter-test:3.3.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.3.0"));
+                .include(dependency("org.springframework.boot:spring-boot-loader:3.3.1"));
     }
 
     public static void main(String[] args) {