1
- buildscript {
2
- repositories {
3
- maven {
4
- // in case there are issues with missing module metadata,
5
- // cf. https://github.com/JKatzwinkel/tla-es/pull/82
6
- url ' https://plugins.gradle.org/m2/'
7
- }
8
- }
9
- }
10
-
11
1
plugins {
12
2
id ' war'
13
3
id ' java'
@@ -16,7 +6,7 @@ plugins {
16
6
id ' maven-publish'
17
7
id ' de.undercouch.download' version ' 5.5.0'
18
8
id ' com.adarshr.test-logger' version ' 4.0.0'
19
- id ' org.springframework.boot' version ' 3.2.1 '
9
+ id ' org.springframework.boot' version ' 3.3.0-M1 '
20
10
id ' com.github.ben-manes.versions' version ' 0.50.0'
21
11
id ' com.github.dawnwords.jacoco.badge' version ' 0.2.4'
22
12
}
@@ -80,13 +70,13 @@ dependencies {
80
70
implementation ' org.modelmapper:modelmapper:3.2.0'
81
71
implementation ' org.jooq:jool:0.9.15'
82
72
83
- implementation(' org.springframework.boot:spring-boot-starter-jetty:3.2.1 ' ) {
73
+ implementation(' org.springframework.boot:spring-boot-starter-jetty:3.3.0-M1 ' ) {
84
74
exclude module : ' jetty-xml'
85
75
}
86
- implementation(' org.springframework.boot:spring-boot-starter-web:3.2.1 ' ) {
76
+ implementation(' org.springframework.boot:spring-boot-starter-web:3.3.0-M1 ' ) {
87
77
exclude module : ' spring-boot-starter-tomcat'
88
78
}
89
- implementation ' org.springframework.boot:spring-boot-starter-thymeleaf:3.2.1 '
79
+ implementation ' org.springframework.boot:spring-boot-starter-thymeleaf:3.3.0-M1 '
90
80
implementation ' nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0'
91
81
implementation ' org.apache.commons:commons-lang3:3.14.0'
92
82
implementation ' ch.qos.logback:logback-classic:1.4.14' // CVE-2023-6378
@@ -97,7 +87,7 @@ dependencies {
97
87
exclude group : ' bouncycastle'
98
88
}
99
89
100
- testImplementation ' org.springframework.boot:spring-boot-starter-test:3.2.1 '
90
+ testImplementation ' org.springframework.boot:spring-boot-starter-test:3.3.0-M1 '
101
91
testImplementation ' org.junit.jupiter:junit-jupiter-params:5.10.1'
102
92
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.10.1'
103
93
}
0 commit comments