diff --git a/build.gradle b/build.gradle index 23de8f26..77d1967b 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'maven-publish' id 'de.undercouch.download' version '5.6.0' id 'com.adarshr.test-logger' version '4.0.0' - id 'org.springframework.boot' version '3.3.0-M2' + id 'org.springframework.boot' version '3.3.0-M3' id 'com.github.ben-manes.versions' version '0.51.0' id 'com.github.dawnwords.jacoco.badge' version '0.2.4' } @@ -70,23 +70,24 @@ dependencies { implementation 'org.modelmapper:modelmapper:3.2.0' implementation 'org.jooq:jool:0.9.15' - implementation('org.springframework.boot:spring-boot-starter-jetty:3.3.0-M2') { + implementation('org.springframework.boot:spring-boot-starter-jetty:3.3.0-M3') { exclude module: 'jetty-xml' } - implementation('org.springframework.boot:spring-boot-starter-web:3.3.0-M2') { + implementation('org.springframework.boot:spring-boot-starter-web:3.3.0-M3') { exclude module: 'spring-boot-starter-tomcat' } - implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.3.0-M2' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.3.0-M3' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0' implementation 'org.apache.commons:commons-lang3:3.14.0' implementation 'com.github.jkatzwinkel:tla-common:main-SNAPSHOT' implementation('com.github.rosmord.jsesh:jsesh:release-7.6.1') { exclude group: 'com.jgoodies', module: 'forms' + exclude group: 'com.lowagie', module: 'itext' exclude group: 'bouncycastle' } - testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.0-M2' + testImplementation 'org.springframework.boot:spring-boot-starter-test:3.3.0-M3' testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2' }