commit 480e012f5582807a602b472e3476d4f640fed0be
parent 153f0dc31fb120f2d1e1c1782d49769a672a501f
Author: Wim Dupont <wim@wimdupont.com>
Date: Sat, 29 Oct 2022 15:50:56 +0200
version bump
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.3</version>
+ <version>2.7.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sxcy</groupId>
@@ -16,6 +16,7 @@
<properties>
<java.version>17</java.version>
+ <flyway.version>9.6.0</flyway.version>
</properties>
<dependencies>
@@ -54,11 +55,12 @@
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
+ <version>${flyway.version}</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
- <version>9.1.6</version>
+ <version>${flyway.version}</version>
</dependency>
</dependencies>
@@ -127,5 +129,4 @@
</properties>
</profile>
</profiles>
-
</project>