blob: c252ac96aefa122d96afc969d9be826949c2725f [file] [log] [blame]
刘洪青ffe2f412019-10-11 10:25:26 +08001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>com.supwisdom.institute</groupId>
8 <artifactId>sw-backend-thirdparty-agent-parent</artifactId>
9 <version>0.0.2-SNAPSHOT</version>
10 </parent>
11
12 <groupId>com.supwisdom.institute</groupId>
13 <artifactId>sw-backend-thirdparty-poa</artifactId>
14 <version>0.0.2-SNAPSHOT</version>
15 <packaging>jar</packaging>
16
17 <name>Supwisdom Backend Framework Third Party POA</name>
18 <description>Supwisdom Backend Framework Third Party POA project</description>
19
20 <dependencies>
21
22 <dependency>
23 <groupId>org.projectlombok</groupId>
24 <artifactId>lombok</artifactId>
25 <scope>provided</scope>
26 </dependency>
27
28 <dependency>
29 <groupId>javax.servlet</groupId>
30 <artifactId>javax.servlet-api</artifactId>
31 <scope>provided</scope>
32 </dependency>
33
34
35 <dependency>
36 <groupId>org.springframework.boot</groupId>
37 <artifactId>spring-boot-starter</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-web</artifactId>
43 </dependency>
44
45
46 <dependency>
47 <groupId>com.supwisdom.institute</groupId>
48 <artifactId>sw-backend-common-core</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>com.supwisdom.institute</groupId>
53 <artifactId>sw-backend-common-utils</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>com.supwisdom.institute</groupId>
58 <artifactId>sw-backend-common-framework</artifactId>
59 </dependency>
60
61
62 <dependency>
63 <groupId>org.springframework.data</groupId>
64 <artifactId>spring-data-redis</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>redis.clients</groupId>
68 <artifactId>jedis</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.apache.httpcomponents</groupId>
73 <artifactId>httpclient</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.httpcomponents</groupId>
77 <artifactId>httpcore</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>commons-codec</groupId>
82 <artifactId>commons-codec</artifactId>
83 </dependency>
84
85 <dependency>
86 <groupId>com.alibaba</groupId>
87 <artifactId>fastjson</artifactId>
88 </dependency>
89
90
91 <dependency>
92 <groupId>org.springframework.boot</groupId>
93 <artifactId>spring-boot-starter-test</artifactId>
94 <scope>test</scope>
95 </dependency>
96
97 </dependencies>
98
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-compiler-plugin</artifactId>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-javadoc-plugin</artifactId>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-release-plugin</artifactId>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-surefire-plugin</artifactId>
116 </plugin>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-failsafe-plugin</artifactId>
120 </plugin>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-jar-plugin</artifactId>
124 </plugin>
125 <plugin>
126 <groupId>org.jacoco</groupId>
127 <artifactId>jacoco-maven-plugin</artifactId>
128 </plugin>
129 </plugins>
130 </build>
131
132</project>