diff --git a/build.gradle b/build.gradle index 334ec8a..67a42a5 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ import java.nio.charset.StandardCharsets plugins { - id 'org.springframework.boot' version '2.7.17' + id 'org.springframework.boot' version '2.7.18' id 'io.spring.dependency-management' version '1.1.3' id 'java' id 'com.google.cloud.tools.jib' version '3.4.0' @@ -31,10 +31,10 @@ compileJava { } dependencies { - implementation 'org.springframework.boot:spring-boot-starter:3.1.5' + implementation 'org.springframework.boot:spring-boot-starter:3.2.0' // developmentOnly 'org.springframework.boot:spring-boot-devtools:3.1.1' - implementation 'org.springframework.boot:spring-boot-starter-actuator:3.1.5' - implementation 'org.springframework.boot:spring-boot-starter-web:3.1.5' + implementation 'org.springframework.boot:spring-boot-starter-actuator:3.2.0' + implementation 'org.springframework.boot:spring-boot-starter-web:3.2.0' implementation 'io.javaoperatorsdk:operator-framework-spring-boot-starter:5.2.0' constraints { implementation('io.fabric8:kubernetes-httpclient-okhttp:6.7.2') { @@ -43,12 +43,12 @@ dependencies { } implementation 'org.bouncycastle:bcpkix-jdk15on:1.70' // required for the fabric8 k8s client to grok k3d certificates - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.1.5' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:3.2.0' compileOnly 'org.projectlombok:lombok' testCompileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'io.fabric8:crd-generator-apt:6.7.2' - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.5' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0' testImplementation 'io.javaoperatorsdk:operator-framework-spring-boot-starter-test:5.2.0' }