commit 613a16c382119f935cb6da4763b1f3edbd2b14b0
parent 4e5741a4218c5a3748413624bfe1070239836ec2
Author: Wim Dupont <wim@wimdupont.com>
Date: Sun, 26 Feb 2023 15:31:34 +0100
boot upgrade and added flyway properties config
Former-commit-id: 6238e2caf4e9d2708605e7c8fcfb082e9e2d31ff
Diffstat:
1 file changed, 2 insertions(+), 8 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>3.0.2</version>
+ <version>3.0.3</version>
</parent>
<groupId>com.wimdupont</groupId>
<artifactId>personalweb</artifactId>
@@ -16,6 +16,7 @@
<properties>
<java.version>17</java.version>
<asciidoctorj.version>2.5.7</asciidoctorj.version>
+ <flyway.configFiles>src/main/resources/application.properties</flyway.configFiles>
</properties>
<dependencies>
@@ -101,13 +102,6 @@
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
- <configuration>
- <url>jdbc:mariadb://localhost:3306/sxcyweb</url>
- <!-- Run mvn flwyway plugin commands with following parameters: -->
- <!-- -Ddb.user=XXX -Ddb.pwd=YYY-->
- <user>${db.user}</user>
- <password>${db.pwd}</password>
- </configuration>
</plugin>
</plugins>
</build>