chenjiahe
2021-10-28 eb56b31099062a548d6369248e67921d5afe6236
提交 | 用户 | age
cd7c12 1 <?xml version="1.0" encoding="UTF-8"?>
C 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
6c1bfc 7     <groupId>com.hx.gitee</groupId>
cd7c12 8     <artifactId>platform-common</artifactId>
C 9     <packaging>jar</packaging>
6c1bfc 10     <version>1.0-SNAPSHOT</version>
cd7c12 11
C 12     <dependencies>
13         <dependency>
14             <groupId>com.github.ulisesbocchio</groupId>
15             <artifactId>jasypt-spring-boot-starter</artifactId>
6c1bfc 16             <version>2.1.2</version>
C 17         </dependency>
18
19         <dependency>
20             <groupId>com.hx.gitee</groupId>
21             <artifactId>hx-common</artifactId>
22             <version>1.0-SNAPSHOT</version>
cd7c12 23         </dependency>
C 24
25     </dependencies>
26
27     <build>
28         <finalName>hx-demoboot</finalName>
29         <resources>
30             <resource>
31                 <directory>src/main/java</directory>
32                 <includes>
33                     <include>**/*.properties</include>
34                     <include>**/*.xml</include>
35                     <include>**/*.tld</include>
36                     <include>**/*.tpl</include>
37                 </includes>
38                 <filtering>false</filtering>
39             </resource>
40             <resource>
41                 <directory>src/main/resources</directory>
42                 <excludes>
43                     <exclude>profile-active/**</exclude>
44                 </excludes>
45             </resource>
46             <resource>
47                 <directory>${runtime.env}</directory>
48             </resource>
49         </resources>
50     </build>
51
52 </project>