From 0617966e592b1d59ba516af93474af51e478227d Mon Sep 17 00:00:00 2001 From: JKatzwinkel Date: Mon, 28 Aug 2023 14:27:29 +0200 Subject: [PATCH] upgrade spring-boot artifacts to 3.2.0-M2 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index a1f12504..af65f4bc 100644 --- a/build.gradle +++ b/build.gradle @@ -82,14 +82,14 @@ dependencies { // https://github.com/spring-projects/spring-framework/issues/29435 implementation('jakarta.servlet:jakarta.servlet-api:5.0.0') - implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0-M1') { + implementation('org.springframework.boot:spring-boot-starter-jetty:3.2.0-M2') { exclude group: 'jakarta.servlet', module: 'jakarta.servlet-api' // until jetty 12 exclude module: 'jetty-xml' } implementation('org.springframework.boot:spring-boot-starter-web:3.2.0-M2') { exclude module: 'spring-boot-starter-tomcat' } - implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-M1' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.0-M2' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.2.1' implementation 'org.apache.commons:commons-lang3:3.13.0' @@ -100,7 +100,7 @@ dependencies { } testImplementation('jakarta.servlet:jakarta.servlet-api:6.0.0') - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0-M1' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.0-M2' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.0' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0' }