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