File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
src/test/java/com/sivalabs/bookstore Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java"
3
- id " org.springframework.boot" version " 3.4.2 "
3
+ id " org.springframework.boot" version " 3.5.0-M2 "
4
4
id " io.spring.dependency-management" version " 1.1.7"
5
5
id " com.diffplug.spotless" version " 7.0.2"
6
- id " org.openrewrite.rewrite" version " 7.1.2 "
6
+ id " org.openrewrite.rewrite" version " 7.1.7 "
7
7
}
8
8
9
9
group = " com.sivalabs"
@@ -27,7 +27,7 @@ repositories {
27
27
}
28
28
29
29
ext {
30
- set(" springModulithVersion" , " 1.3.2 " )
30
+ set(" springModulithVersion" , " 1.4.0-M2 " )
31
31
set(" datasourceMicrometerSpringBootVersion" , " 1.0.6" )
32
32
}
33
33
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
17
17
- ' 5672:5672'
18
18
- ' 15672:15672'
19
19
zipkin :
20
- image : ' openzipkin/zipkin:3.4.4 '
20
+ image : ' openzipkin/zipkin:3.5.0 '
21
21
environment :
22
22
- STORAGE_TYPE=mem
23
23
ports :
Original file line number Diff line number Diff line change 30
30
spec :
31
31
containers :
32
32
- name : zipkin
33
- image : " openzipkin/zipkin:3.4.4 "
33
+ image : " openzipkin/zipkin:3.5.0 "
34
34
ports :
35
35
- name : zipkin
36
36
containerPort : 9411
Original file line number Diff line number Diff line change 7
7
<parent >
8
8
<groupId >org.springframework.boot</groupId >
9
9
<artifactId >spring-boot-starter-parent</artifactId >
10
- <version >3.4.2 </version >
10
+ <version >3.5.0-M2 </version >
11
11
<relativePath />
12
12
</parent >
13
13
<groupId >com.sivalabs</groupId >
19
19
<properties >
20
20
<java .version>21</java .version>
21
21
<dockerImageName >sivaprasadreddy/${project.artifactId}</dockerImageName >
22
- <spring-modulith .version>1.3.2 </spring-modulith .version>
22
+ <spring-modulith .version>1.4.0-M2 </spring-modulith .version>
23
23
<htmx-spring-boot-thymeleaf .version>4.0.1</htmx-spring-boot-thymeleaf .version>
24
24
<datasource-micrometer-spring-boot .version>1.0.6</datasource-micrometer-spring-boot .version>
25
- <spotless .version>2.44.2 </spotless .version>
26
- <rewrite-maven-plugin .version>6.1.2 </rewrite-maven-plugin .version>
25
+ <spotless .version>2.44.3 </spotless .version>
26
+ <rewrite-maven-plugin .version>6.2.3 </rewrite-maven-plugin .version>
27
27
</properties >
28
28
29
29
<dependencyManagement >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class TestcontainersConfiguration {
22
22
23
23
@ Container
24
24
static GenericContainer <?> zipkin =
25
- new GenericContainer <>(DockerImageName .parse ("openzipkin/zipkin:3.4.4 " )).withExposedPorts (9411 );
25
+ new GenericContainer <>(DockerImageName .parse ("openzipkin/zipkin:3.5.0 " )).withExposedPorts (9411 );
26
26
27
27
@ Bean
28
28
@ ServiceConnection
You can’t perform that action at this time.
0 commit comments