From cc5c49cb534f9dfb16c7dde63ac5a7d72143340d Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Thu, 13 Jun 2024 15:56:32 +0200 Subject: [PATCH] Dependencies: Update to Spring 3.3.0 in /java-spring --- java-spring/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java-spring/build.gradle b/java-spring/build.gradle index 653ead8..fc5a114 100644 --- a/java-spring/build.gradle +++ b/java-spring/build.gradle @@ -8,7 +8,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:3.2.2") + classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.0") } } @@ -28,10 +28,10 @@ repositories { dependencies { implementation 'commons-codec:commons-codec:1.16.1' implementation 'io.crate:crate-jdbc:2.7.0' - implementation 'org.springframework.boot:spring-boot-starter-data-jdbc:3.2.2' - implementation 'org.springframework.boot:spring-boot-starter-jdbc:3.2.2' - implementation 'org.springframework.boot:spring-boot-starter-web:3.2.2' - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.2' + implementation 'org.springframework.boot:spring-boot-starter-data-jdbc:3.3.0' + implementation 'org.springframework.boot:spring-boot-starter-jdbc:3.3.0' + implementation 'org.springframework.boot:spring-boot-starter-web:3.3.0' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.0' testImplementation 'junit:junit:4.13.2' }