cmg
2024-04-18 6571fde0220179ee4dcde2b8b6f1c2a5a15f2670
提交 | 用户 | age
da6731 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     <parent>
8         <groupId>com.hx.gitee</groupId>
9         <artifactId>hx-parent</artifactId>
e595ff 10         <version>stander</version>
da6731 11     </parent>
C 12
13     <artifactId>hx-redisson</artifactId>
14     <packaging>jar</packaging>
15
16     <dependencies>
17
18         <dependency>
628f77 19             <groupId>org.projectlombok</groupId>
C 20             <artifactId>lombok</artifactId>
21         </dependency>
22
23         <dependency>
da6731 24             <groupId>commons-collections</groupId>
C 25             <artifactId>commons-collections</artifactId>
26         </dependency>
e595ff 27
da6731 28         <dependency>
C 29             <groupId>com.dtflys.forest</groupId>
30             <artifactId>spring-boot-starter-forest</artifactId>
31         </dependency>
32
33         <!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter -->
34         <dependency>
35             <groupId>org.redisson</groupId>
36             <artifactId>redisson-spring-boot-starter</artifactId>
37         </dependency>
38
39         <!-- redis -->
40         <dependency>
41             <groupId>org.springframework.boot</groupId>
42             <artifactId>spring-boot-starter-data-redis</artifactId>
43         </dependency>
44     </dependencies>
45
46     <build>
937625 47         <finalName>hx-redisson</finalName>
da6731 48         <resources>
C 49             <resource>
50                 <directory>src/main/java</directory>
51                 <includes>
52                     <include>**/*.properties</include>
53                     <include>**/*.xml</include>
54                     <include>**/*.tld</include>
55                     <include>**/*.tpl</include>
56                 </includes>
57                 <filtering>false</filtering>
58             </resource>
59             <resource>
60                 <directory>src/main/resources</directory>
61                 <excludes>
62                     <exclude>profile-active/**</exclude>
63                 </excludes>
64             </resource>
65             <resource>
66                 <directory>${runtime.env}</directory>
67             </resource>
68         </resources>
69     </build>
70
71 </project>