Skip to content

Commit 9ab9dc6

Browse files
committed
Migration generator
1 parent 01b7d0d commit 9ab9dc6

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed
13.3 KB
Binary file not shown.

pom.xml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-starter-parent</artifactId>
87
<version>2.5.6</version>
9-
<relativePath/> <!-- lookup parent from repository -->
8+
<relativePath /> <!-- lookup parent from repository -->
109
</parent>
1110
<groupId>com.github.throyer.common.spring-boot</groupId>
1211
<artifactId>api</artifactId>
@@ -18,6 +17,13 @@
1817
<java.version>16</java.version>
1918
</properties>
2019

20+
<repositories>
21+
<repository>
22+
<id>migration-maven-plugin</id>
23+
<url>file://${project.basedir}/lib/migration-maven-plugin-1.0.0.jar</url>
24+
</repository>
25+
</repositories>
26+
2127
<dependencies>
2228
<dependency>
2329
<groupId>org.springframework.boot</groupId>
@@ -109,7 +115,7 @@
109115
<artifactId>bootstrap</artifactId>
110116
<version>5.1.3</version>
111117
</dependency>
112-
118+
113119
<dependency>
114120
<groupId>org.thymeleaf.extras</groupId>
115121
<artifactId>thymeleaf-extras-java8time</artifactId>
@@ -162,6 +168,11 @@
162168

163169
<build>
164170
<plugins>
171+
<plugin>
172+
<groupId>com.github.throyer</groupId>
173+
<artifactId>migration-maven-plugin</artifactId>
174+
<version>1.0.0</version>
175+
</plugin>
165176
<plugin>
166177
<groupId>org.springframework.boot</groupId>
167178
<artifactId>spring-boot-maven-plugin</artifactId>

0 commit comments

Comments
 (0)