Commit 6d03070eb70bbd342ae71d66e29e5ecbceb81b57
1 parent
6564a266
获取pom文件内容失效问题解决
Signed-off-by: TanYibin <5491541@qq.com>
Showing
1 changed file
with
16 additions
and
2 deletions
huaheng-wms-core/pom.xml
1 | 1 | <?xml version="1.0"?> |
2 | 2 | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" |
3 | - xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
3 | + xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | |
6 | 6 | <parent> |
... | ... | @@ -220,7 +220,7 @@ |
220 | 220 | <plugin> |
221 | 221 | <groupId>org.springframework.boot</groupId> |
222 | 222 | <artifactId>spring-boot-maven-plugin</artifactId> |
223 | - <!-- 启动jar包命令:包含引入lib包,开启远程调试端口7080,启动环境选择 java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=7080,suspend=n -jar -Dloader.path=./lib | |
223 | + <!-- 启动jar包命令:包含引入lib包,开启远程调试端口7080,启动环境选择 java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=7080,suspend=n -jar -Dloader.path=./lib | |
224 | 224 | -Dspring.profiles.active=prod huaheng-wms-core.jar --> |
225 | 225 | <configuration> |
226 | 226 | <mainClass>org.jeecg.JeecgSystemApplication</mainClass> |
... | ... | @@ -245,6 +245,20 @@ |
245 | 245 | <resource> |
246 | 246 | <directory>src/main/resources</directory> |
247 | 247 | <filtering>false</filtering> |
248 | + <excludes> | |
249 | + <exclude>**/*.yml</exclude> | |
250 | + <exclude>**/*.xml</exclude> | |
251 | + <exclude>**/*.properties</exclude> | |
252 | + </excludes> | |
253 | + </resource> | |
254 | + <resource> | |
255 | + <directory>src/main/resources</directory> | |
256 | + <filtering>true</filtering> | |
257 | + <includes> | |
258 | + <include>**/*.yml</include> | |
259 | + <include>**/*.xml</include> | |
260 | + <include>**/*.properties</include> | |
261 | + </includes> | |
248 | 262 | </resource> |
249 | 263 | <resource> |
250 | 264 | <directory>src/main/java</directory> |
... | ... |