|
@@ -20,6 +20,7 @@
|
|
|
<module>tools-zxing</module>
|
|
|
<module>data-redis</module>
|
|
|
<module>data-mybatis-plus</module>
|
|
|
+ <module>data-upgrade</module>
|
|
|
<module>core-models</module>
|
|
|
<module>core-concurrent</module>
|
|
|
<module>core-uid</module>
|
|
@@ -161,6 +162,11 @@
|
|
|
<artifactId>data-redis</artifactId>
|
|
|
<version>${project.version}</version>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.qmth.boot</groupId>
|
|
|
+ <artifactId>data-upgrade</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.qmth.boot</groupId>
|
|
|
<artifactId>data-mybatis-plus</artifactId>
|
|
@@ -247,6 +253,11 @@
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.15</version>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.18.0</version>
|
|
|
+ </dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
@@ -420,6 +431,15 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <skip>true</skip>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|