cmg
2024-04-16 43cf442b69767d2d4c90e8654e7e6e7ea5df71c6
提交 | 用户 | 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>
43cf44 10
C 11     <parent>
12         <groupId>com.hx.gitee</groupId>
13         <artifactId>hx-parent</artifactId>
14         <version>stander</version>
15     </parent>
cd7c12 16
C 17     <dependencies>
18         <dependency>
19             <groupId>com.github.ulisesbocchio</groupId>
20             <artifactId>jasypt-spring-boot-starter</artifactId>
6c1bfc 21         </dependency>
C 22
23         <dependency>
24             <groupId>com.hx.gitee</groupId>
25             <artifactId>hx-common</artifactId>
43cf44 26             <version>stander</version>
cd7c12 27         </dependency>
C 28
ee3e39 29         <dependency>
C 30             <groupId>com.hx.gitee</groupId>
31             <artifactId>hx-redisson</artifactId>
43cf44 32             <version>stander</version>
ee3e39 33         </dependency>
C 34
cd7c12 35     </dependencies>
C 36
37     <build>
38         <finalName>hx-demoboot</finalName>
39         <resources>
40             <resource>
41                 <directory>src/main/java</directory>
42                 <includes>
43                     <include>**/*.properties</include>
44                     <include>**/*.xml</include>
45                     <include>**/*.tld</include>
46                     <include>**/*.tpl</include>
47                 </includes>
48                 <filtering>false</filtering>
49             </resource>
50             <resource>
51                 <directory>src/main/resources</directory>
52                 <excludes>
53                     <exclude>profile-active/**</exclude>
54                 </excludes>
55             </resource>
56             <resource>
57                 <directory>${runtime.env}</directory>
58             </resource>
59         </resources>
60     </build>
61
62 </project>