@@ -5,7 +5,7 @@ plugins {
55}
66
77group = ' ee.bitweb'
8- version = ' 5.0.0-RC1 '
8+ version = ' 5.0.0'
99java {
1010 sourceCompatibility = ' 17'
1111}
@@ -24,43 +24,43 @@ repositories {
2424
2525dependencies {
2626 // https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina
27- compileOnly ' org.apache.tomcat:tomcat-catalina:11.0.12 '
27+ compileOnly ' org.apache.tomcat:tomcat-catalina:11.0.21 '
2828
2929 // https://mvnrepository.com/artifact/org.springframework/spring-webmvc
30- compileOnly ' org.springframework:spring-webmvc:7.0.0 '
30+ compileOnly ' org.springframework:spring-webmvc:7.0.7 '
3131
3232 // https://mvnrepository.com/artifact/org.springframework/spring-tx
33- compileOnly ' org.springframework:spring-tx:7.0.0 '
33+ compileOnly ' org.springframework:spring-tx:7.0.7 '
3434
3535 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
36- compileOnly ' org.springframework.boot:spring-boot-starter-security:4.0.0 '
36+ compileOnly ' org.springframework.boot:spring-boot-starter-security:4.0.5 '
3737
3838 // https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp
39- compileOnly ' org.springframework.boot:spring-boot-starter-amqp:4.0.0 '
39+ compileOnly ' org.springframework.boot:spring-boot-starter-amqp:4.0.5 '
4040
4141 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor
42- annotationProcessor ' org.springframework.boot:spring-boot-configuration-processor:4.0.0 '
42+ annotationProcessor ' org.springframework.boot:spring-boot-configuration-processor:4.0.5 '
4343
4444 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator
45- compileOnly ' org.springframework.boot:spring-boot-starter-actuator:4.0.0 '
45+ compileOnly ' org.springframework.boot:spring-boot-starter-actuator:4.0.5 '
4646
4747 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-health (new in Spring Boot 4)
48- compileOnly ' org.springframework.boot:spring-boot-health:4.0.0 '
48+ compileOnly ' org.springframework.boot:spring-boot-health:4.0.5 '
4949
5050 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure
51- compileOnly ' org.springframework.boot:spring-boot-autoconfigure:4.0.0 '
51+ compileOnly ' org.springframework.boot:spring-boot-autoconfigure:4.0.5 '
5252
5353 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation
54- compileOnly ' org.springframework.boot:spring-boot-starter-validation:4.0.0 '
54+ compileOnly ' org.springframework.boot:spring-boot-starter-validation:4.0.5 '
5555
5656 // Jackson 2.x - required for Retrofit converter-jackson (Retrofit doesn't support Jackson 3 yet)
57- compileOnly ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.1 '
57+ compileOnly ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.2 '
5858
5959 // Jackson 3.x - required for Spring Boot 4 (ObjectMapper, ControllerAdvisor, Audit module)
60- compileOnly ' tools.jackson.core:jackson-databind:3.0 .2'
60+ compileOnly ' tools.jackson.core:jackson-databind:3.1 .2'
6161
6262 // Spring Boot Jackson - provides JsonMapperBuilderCustomizer
63- compileOnly ' org.springframework.boot:spring-boot-jackson:4.0.0 '
63+ compileOnly ' org.springframework.boot:spring-boot-jackson:4.0.5 '
6464
6565 // https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api
6666 compileOnly ' jakarta.validation:jakarta.validation-api:3.1.1'
@@ -78,19 +78,19 @@ dependencies {
7878 compileOnly ' de.siegmar:logback-gelf:6.1.2'
7979
8080 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web
81- testImplementation ' org.springframework.boot:spring-boot-starter-web:4.0.0 '
81+ testImplementation ' org.springframework.boot:spring-boot-starter-web:4.0.5 '
8282
8383 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test
84- testImplementation ' org.springframework.boot:spring-boot-starter-test:4.0.0 '
84+ testImplementation ' org.springframework.boot:spring-boot-starter-test:4.0.5 '
8585
8686 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-webmvc-test (new in Spring Boot 4 for MockMvc testing)
87- testImplementation ' org.springframework.boot:spring-boot-webmvc-test:4.0.0 '
87+ testImplementation ' org.springframework.boot:spring-boot-webmvc-test:4.0.5 '
8888
8989 // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
90- testImplementation ' org.springframework.boot:spring-boot-starter-security:4.0.0 '
90+ testImplementation ' org.springframework.boot:spring-boot-starter-security:4.0.5 '
9191
9292 // https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp
93- testImplementation ' org.springframework.boot:spring-boot-starter-amqp:4.0.0 '
93+ testImplementation ' org.springframework.boot:spring-boot-starter-amqp:4.0.5 '
9494
9595 // https://mvnrepository.com/artifact/org.json/json
9696 testImplementation ' org.json:json:20251224'
@@ -99,18 +99,18 @@ dependencies {
9999 testImplementation ' ee.bitweb:spring-test-core:2.0.1'
100100
101101 // https://mvnrepository.com/artifact/org.mockito/mockito-core
102- testImplementation ' org.mockito:mockito-core:5.21 .0'
102+ testImplementation ' org.mockito:mockito-core:5.23 .0'
103103
104104 // https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
105- testImplementation ' org.mockito:mockito-junit-jupiter:5.21 .0'
105+ testImplementation ' org.mockito:mockito-junit-jupiter:5.23 .0'
106106
107107 // https://mvnrepository.com/artifact/org.mock-server/mockserver-netty
108108 testImplementation(' org.mock-server:mockserver-netty:5.15.0' ) {
109109 exclude group : ' junit' , module : ' junit'
110110 }
111111
112112 // https://mvnrepository.com/artifact/org.testcontainers/testcontainers
113- testImplementation ' org.testcontainers:testcontainers:2.0.3 '
113+ testImplementation ' org.testcontainers:testcontainers:2.0.4 '
114114
115115 testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
116116}
0 commit comments