Skip to content

Commit ce0a734

Browse files
authored
Bump to Spring Cloud 2024 and Spring Boot 3.4.1 (#302)
1 parent b9c725f commit ce0a734

File tree

9 files changed

+30
-12
lines changed

9 files changed

+30
-12
lines changed

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.3.4</version>
9+
<version>3.4.1</version>
1010
</parent>
1111

1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
<name>${project.artifactId}</name>
1616
<packaging>pom</packaging>
1717

@@ -29,7 +29,7 @@
2929
<properties>
3030
<java.version>17</java.version>
3131

32-
<spring-cloud.version>2023.0.3</spring-cloud.version>
32+
<spring-cloud.version>2024.0.0</spring-cloud.version>
3333
<chaos-monkey-spring-boot.version>3.1.0</chaos-monkey-spring-boot.version>
3434
<jolokia-core.version>1.7.1</jolokia-core.version>
3535

spring-petclinic-admin-server/pom.xml

+10-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
<parent>
1313
<groupId>org.springframework.samples</groupId>
1414
<artifactId>spring-petclinic-microservices</artifactId>
15-
<version>3.3.4</version>
15+
<version>3.4.1</version>
1616
</parent>
1717

1818
<properties>
19-
<spring-boot-admin.version>3.2.0</spring-boot-admin.version>
19+
<spring-boot-admin.version>3.4.1</spring-boot-admin.version>
2020
<docker.image.exposed.port>9090</docker.image.exposed.port>
2121
<docker.image.dockerfile.dir>${basedir}/../docker</docker.image.dockerfile.dir>
2222
</properties>
@@ -35,6 +35,10 @@
3535
<groupId>org.springframework.cloud</groupId>
3636
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
3737
</dependency>
38+
<dependency>
39+
<groupId>org.springframework.boot</groupId>
40+
<artifactId>spring-boot-starter-cache</artifactId>
41+
</dependency>
3842

3943
<!-- Spring Boot Admin -->
4044
<dependency>
@@ -53,6 +57,10 @@
5357
<groupId>org.jolokia</groupId>
5458
<artifactId>jolokia-core</artifactId>
5559
</dependency>
60+
<dependency>
61+
<groupId>com.github.ben-manes.caffeine</groupId>
62+
<artifactId>caffeine</artifactId>
63+
</dependency>
5664

5765
</dependencies>
5866

spring-petclinic-api-gateway/pom.xml

+11-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>
@@ -20,6 +20,7 @@
2020
<webjars-angular.version>1.8.3</webjars-angular.version>
2121
<webjars-angular-ui-router.version>1.0.30</webjars-angular-ui-router.version>
2222
<webjars-marked.version>14.1.2</webjars-marked.version>
23+
<squareup-okhttp3.version>4.12.0</squareup-okhttp3.version>
2324

2425
<libsass-maven-plugin.version>0.2.29</libsass-maven-plugin.version>
2526
<docker.image.exposed.port>8081</docker.image.exposed.port>
@@ -42,6 +43,10 @@
4243
<groupId>org.springframework.boot</groupId>
4344
<artifactId>spring-boot-starter-actuator</artifactId>
4445
</dependency>
46+
<dependency>
47+
<groupId>org.springframework.boot</groupId>
48+
<artifactId>spring-boot-starter-cache</artifactId>
49+
</dependency>
4550
<dependency>
4651
<groupId>org.springframework.boot</groupId>
4752
<artifactId>spring-boot-starter-test</artifactId>
@@ -95,6 +100,10 @@
95100
<groupId>io.zipkin.reporter2</groupId>
96101
<artifactId>zipkin-reporter-brave</artifactId>
97102
</dependency>
103+
<dependency>
104+
<groupId>com.github.ben-manes.caffeine</groupId>
105+
<artifactId>caffeine</artifactId>
106+
</dependency>
98107

99108
<!-- Webjars -->
100109
<dependency>
@@ -141,6 +150,7 @@
141150
<dependency>
142151
<groupId>com.squareup.okhttp3</groupId>
143152
<artifactId>mockwebserver</artifactId>
153+
<version>${squareup-okhttp3.version}</version>
144154
<scope>test</scope>
145155
</dependency>
146156
</dependencies>

spring-petclinic-config-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

spring-petclinic-customers-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

spring-petclinic-discovery-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

spring-petclinic-genai-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

spring-petclinic-vets-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

spring-petclinic-visits-service/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.samples</groupId>
1313
<artifactId>spring-petclinic-microservices</artifactId>
14-
<version>3.3.4</version>
14+
<version>3.4.1</version>
1515
</parent>
1616

1717
<properties>

0 commit comments

Comments
 (0)