Skip to content

Commit dc06a75

Browse files
committed
Upgrade Spring Boot to 3.2.1
1 parent 65015cb commit dc06a75

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
<groupId>org.springframework.samples</groupId>
77
<artifactId>spring-petclinic-rest</artifactId>
8-
<version>3.0.2</version>
8+
<version>3.2.1</version>
99

1010
<description>REST version of the Spring Petclinic sample application</description>
1111
<url>https://spring-petclinic.github.io/</url>
1212

1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>3.0.2</version>
16+
<version>3.2.1</version>
1717
<relativePath/> <!-- lookup parent from Maven repository -->
1818
</parent>
1919

@@ -75,8 +75,8 @@
7575
<scope>runtime</scope>
7676
</dependency>
7777
<dependency>
78-
<groupId>mysql</groupId>
79-
<artifactId>mysql-connector-java</artifactId>
78+
<groupId>com.mysql</groupId>
79+
<artifactId>mysql-connector-j</artifactId>
8080
<scope>runtime</scope>
8181
</dependency>
8282
<dependency>
@@ -176,8 +176,7 @@
176176
<additionalProperties>
177177
<encoding.source>${project.build.sourceEncoding}</encoding.source>
178178
<encoding.reporting>${project.reporting.outputEncoding}</encoding.reporting>
179-
<java.source>${maven.compiler.source}</java.source>
180-
<java.target>${maven.compiler.target}</java.target>
179+
<java.release>${maven.compiler.release}</java.release>
181180
</additionalProperties>
182181
</configuration>
183182
</execution>

0 commit comments

Comments
 (0)