Skip to content

Commit b0b0691

Browse files
committed
bump flyway version from 5.2.4 to 8.0.5
1 parent a882f3e commit b0b0691

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,6 @@ Apollo 2.0.0
5151
* [Upgrade spring boot to 2.6.6 and spring cloud to 2021.0.1](https://github.com/apolloconfig/apollo/pull/4295)
5252
* [Fix the apollo portal start failed issue](https://github.com/apolloconfig/apollo/pull/4298)
5353
* [fix: javax.net.ssl.SSLHandshakeException: No appropriate protocol](https://github.com/apolloconfig/apollo/pull/4308)
54+
* [Upgrade flyway to 8.0.5](https://github.com/apolloconfig/apollo/pull/4312)
5455
------------------
5556
All issues and pull requests are [here](https://github.com/ctripcorp/apollo/milestone/8?closed=1)

pom.xml

+12-4
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@
693693
<plugin>
694694
<groupId>org.flywaydb</groupId>
695695
<artifactId>flyway-maven-plugin</artifactId>
696-
<version>5.2.4</version>
696+
<version>8.0.5</version>
697697
<dependencies>
698698
<dependency>
699699
<groupId>mysql</groupId>
@@ -702,7 +702,11 @@
702702
</dependency>
703703
</dependencies>
704704
<configuration>
705-
<configFile>scripts/flyway/flyway-configdb.properties</configFile>
705+
<configFiles>
706+
<configFile>
707+
scripts/flyway/flyway-configdb.properties
708+
</configFile>
709+
</configFiles>
706710
</configuration>
707711
<inherited>false</inherited>
708712
</plugin>
@@ -716,7 +720,7 @@
716720
<plugin>
717721
<groupId>org.flywaydb</groupId>
718722
<artifactId>flyway-maven-plugin</artifactId>
719-
<version>5.2.4</version>
723+
<version>8.0.5</version>
720724
<dependencies>
721725
<dependency>
722726
<groupId>mysql</groupId>
@@ -725,7 +729,11 @@
725729
</dependency>
726730
</dependencies>
727731
<configuration>
728-
<configFile>scripts/flyway/flyway-portaldb.properties</configFile>
732+
<configFiles>
733+
<configFile>
734+
scripts/flyway/flyway-portaldb.properties
735+
</configFile>
736+
</configFiles>
729737
</configuration>
730738
<inherited>false</inherited>
731739
</plugin>

0 commit comments

Comments
 (0)