|
@@ -1,20 +1,21 @@
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
<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">
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<parent>
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<version>2.0.2</version>
|
|
<version>2.0.2</version>
|
|
</parent>
|
|
</parent>
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
<groupId>cn.com.ctop</groupId>
|
|
<groupId>cn.com.ctop</groupId>
|
|
<artifactId>module-check</artifactId>
|
|
<artifactId>module-check</artifactId>
|
|
<version>2.0.2</version>
|
|
<version>2.0.2</version>
|
|
|
|
+ <packaging>jar</packaging>
|
|
<name>module-check</name>
|
|
<name>module-check</name>
|
|
- <description>Data Check Jar</description>
|
|
|
|
-
|
|
|
|
<properties>
|
|
<properties>
|
|
- <java.version>1.8</java.version>
|
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
@@ -42,12 +43,31 @@
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<build>
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
|
|
+ <resources>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>lib</directory>
|
|
|
|
+ <targetPath>BOOT-INF/lib/</targetPath>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**/*.jar</include>
|
|
|
|
+ </includes>
|
|
|
|
+ </resource>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ <targetPath>BOOT-INF/classes/</targetPath>
|
|
|
|
+ </resource>
|
|
|
|
+ <!-- 解决MyBatis配置文件引入问题 -->
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/java</directory>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**/*.properties</include>
|
|
|
|
+ <include>**/*.xml</include>
|
|
|
|
+ </includes>
|
|
|
|
+ <!-- 是否替换资源中的属性-->
|
|
|
|
+ <filtering>false</filtering>
|
|
|
|
+ </resource>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
</build>
|
|
</build>
|
|
-
|
|
|
|
</project>
|
|
</project>
|