|
@@ -3,13 +3,14 @@
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
-
|
|
|
|
<groupId>com.qmth.demo</groupId>
|
|
<groupId>com.qmth.demo</groupId>
|
|
<artifactId>qmth-demo</artifactId>
|
|
<artifactId>qmth-demo</artifactId>
|
|
<packaging>pom</packaging>
|
|
<packaging>pom</packaging>
|
|
<version>1.0.5</version>
|
|
<version>1.0.5</version>
|
|
|
|
+
|
|
<modules>
|
|
<modules>
|
|
<module>api-demo</module>
|
|
<module>api-demo</module>
|
|
|
|
+ <module>data-upgrade-demo</module>
|
|
</modules>
|
|
</modules>
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
@@ -81,6 +82,11 @@
|
|
<artifactId>data-mybatis-plus</artifactId>
|
|
<artifactId>data-mybatis-plus</artifactId>
|
|
<version>${qmth.boot.version}</version>
|
|
<version>${qmth.boot.version}</version>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
|
+ <artifactId>data-upgrade</artifactId>
|
|
|
|
+ <version>${qmth.boot.version}</version>
|
|
|
|
+ </dependency>
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
@@ -96,4 +102,17 @@
|
|
</dependencies>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <skip>true</skip>
|
|
|
|
+ <skipTests>true</skipTests>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
</project>
|
|
</project>
|