personalweb

Archived
git clone git://git.wimdupont.com/personalweb.git
Log | Files | Refs | README | LICENSE

commit 063a5dbdf646c8a5d82bd41dbc6727e9b43bd622
parent 48e3cb6d8aed070b13d554c7acf32b8b2e1c68dc
Author: WimDupont <WimDupont@users.noreply.gitlab.com>
Date:   Mon, 19 Jul 2021 18:29:05 +0200

update pom

Diffstat:
Mpom.xml | 20+++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/pom.xml b/pom.xml @@ -5,8 +5,7 @@ <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>2.3.5.RELEASE</version> - <relativePath/> <!-- lookup parent from repository --> + <version>2.5.1</version> </parent> <groupId>com.wimdupont</groupId> <artifactId>personalweb</artifactId> @@ -14,8 +13,12 @@ <name>PersonalWeb</name> <description>Wim Dupont's personal website</description> + <properties> <java.version>11</java.version> + <flyway.maven.plugin.version>7.11.0</flyway.maven.plugin.version> + <asciidoctorj.version>2.5.1</asciidoctorj.version> + <rome.rometools.version>1.16.0</rome.rometools.version> </properties> <dependencies> @@ -42,11 +45,6 @@ </dependency> <dependency> <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <version>2.4.5</version> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> <dependency> @@ -71,7 +69,7 @@ <dependency> <groupId>com.rometools</groupId> <artifactId>rome</artifactId> - <version>1.8.0</version> + <version>${rome.rometools.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> @@ -89,12 +87,12 @@ <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-maven-plugin</artifactId> - <version>7.9.0</version> + <version>${flyway.maven.plugin.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj</artifactId> - <version>2.5.1</version> + <version>${asciidoctorj.version}</version> </dependency> </dependencies> @@ -122,7 +120,7 @@ <plugin> <groupId>org.flywaydb</groupId> <artifactId>flyway-maven-plugin</artifactId> - <version>7.9.0</version> + <version>${flyway.maven.plugin.version}</version> <configuration> <url>jdbc:mariadb://localhost:3306/sxcyweb</url> </configuration>