fwq
2024-09-27 4b98500dfef8fa232b25e440e846fa238ce68e11
提交 | 用户 | age
c2090b 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     <groupId>com.hx.gitee</groupId>
7c7dee 8     <artifactId>phi-platform-model</artifactId>
C 9     <version>stander</version>
c2090b 10     <packaging>jar</packaging>
C 11
12     <parent>
13         <groupId>com.hx</groupId>
7c7dee 14         <artifactId>phi-platform</artifactId>
C 15         <version>stander</version>
c2090b 16     </parent>
C 17
18     <dependencies>
19
20         <dependency>
21             <groupId>com.github.ulisesbocchio</groupId>
22             <artifactId>jasypt-spring-boot-starter</artifactId>
23         </dependency>
24
25         <dependency>
26             <groupId>com.hx.gitee</groupId>
27             <artifactId>hx-common</artifactId>
28         </dependency>
29
30         <dependency>
31             <groupId>com.hx.gitee</groupId>
7c7dee 32             <artifactId>phi-common</artifactId>
c2090b 33         </dependency>
C 34
35     </dependencies>
36
37     <build>
38        <!-- <finalName>cases_common</finalName>-->
39         <resources>
40             <resource>
41                 <directory>src/main/java</directory>
42                 <includes>
43                     <include>**/*.xml</include>
44                 </includes>
45                 <filtering>false</filtering>
46             </resource>
47             <resource>
48                 <directory>src/main/resources</directory>
49                 <includes>
50                     <include>**/*.xml</include>
51                 </includes>
52             </resource>
53         </resources>
54
55     </build>
56
57 </project>