提交 | 用户 | age
|
18b2dc
|
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.hz</groupId> |
|
8 |
<artifactId>phi-sms-feign</artifactId> |
|
9 |
<packaging>jar</packaging> |
|
10 |
|
|
11 |
<parent> |
|
12 |
<groupId>com.hz</groupId> |
|
13 |
<artifactId>phi-sms-feign-parent</artifactId> |
105cf6
|
14 |
<version>stander</version> |
18b2dc
|
15 |
</parent> |
C |
16 |
|
|
17 |
<dependencies> |
|
18 |
|
|
19 |
<dependency> |
|
20 |
<groupId>com.hx.gitee</groupId> |
|
21 |
<artifactId>hx-common</artifactId> |
|
22 |
</dependency> |
|
23 |
|
|
24 |
<dependency> |
|
25 |
<groupId>com.github.ulisesbocchio</groupId> |
|
26 |
<artifactId>jasypt-spring-boot-starter</artifactId> |
|
27 |
</dependency> |
|
28 |
|
|
29 |
<!--openfeign的支持--> |
|
30 |
<dependency> |
|
31 |
<groupId>org.springframework.cloud</groupId> |
|
32 |
<artifactId>spring-cloud-starter-openfeign</artifactId> |
|
33 |
</dependency> |
105cf6
|
34 |
|
18b2dc
|
35 |
<dependency> |
C |
36 |
<groupId>org.springframework.cloud</groupId> |
|
37 |
<artifactId>spring-cloud-starter-loadbalancer</artifactId> |
|
38 |
</dependency> |
|
39 |
|
105cf6
|
40 |
<dependency> |
C |
41 |
<groupId>org.projectlombok</groupId> |
|
42 |
<artifactId>lombok</artifactId> |
|
43 |
</dependency> |
18b2dc
|
44 |
</dependencies> |
C |
45 |
|
|
46 |
<build> |
|
47 |
<!-- <finalName>cases_common</finalName>--> |
|
48 |
<resources> |
|
49 |
<resource> |
|
50 |
<directory>src/main/java</directory> |
|
51 |
<includes> |
|
52 |
<include>**/*.xml</include> |
|
53 |
</includes> |
|
54 |
<filtering>false</filtering> |
|
55 |
</resource> |
|
56 |
<resource> |
|
57 |
<directory>src/main/resources</directory> |
|
58 |
<includes> |
|
59 |
<include>**/*.xml</include> |
|
60 |
</includes> |
|
61 |
</resource> |
|
62 |
</resources> |
|
63 |
|
|
64 |
</build> |
|
65 |
|
|
66 |
</project> |