blob: ef4a706540647da18f77287fe3fa088117584a03 [file] [log] [blame]
刘洪青e071d362019-08-16 09:39:49 +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>
刘洪青ffe2f412019-10-11 10:25:26 +08008 <artifactId>sw-backend-common-parent</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +08009 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080010 </parent>
11
12 <groupId>com.supwisdom.institute</groupId>
13 <artifactId>sw-backend-common-core</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +080014 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080015 <packaging>jar</packaging>
16
17 <name>Supwisdom Backend Framework Common Core</name>
18 <description>Supwisdom Backend Framework Common Core 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.cloud</groupId>
37 <artifactId>spring-cloud-starter-openfeign</artifactId>
刘洪青859b9972019-08-20 15:43:48 +080038 <optional>true</optional>
刘洪青e071d362019-08-16 09:39:49 +080039 </dependency>
刘洪青98963ab2019-09-05 18:10:09 +080040 <dependency>
41 <groupId>com.netflix.feign</groupId>
42 <artifactId>feign-httpclient</artifactId>
43 <optional>true</optional>
44 </dependency>
刘洪青fc09a452019-09-09 09:27:08 +080045 <dependency>
46 <groupId>org.apache.httpcomponents</groupId>
47 <artifactId>httpclient</artifactId>
48 <optional>true</optional>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.httpcomponents</groupId>
52 <artifactId>httpcore</artifactId>
53 <optional>true</optional>
54 </dependency>
刘洪青98963ab2019-09-05 18:10:09 +080055
刘洪青e071d362019-08-16 09:39:49 +080056 <dependency>
刘洪青4fa11832019-09-19 18:06:26 +080057 <groupId>commons-codec</groupId>
58 <artifactId>commons-codec</artifactId>
59 </dependency>
60
61 <dependency>
刘洪青e071d362019-08-16 09:39:49 +080062 <groupId>com.alibaba</groupId>
63 <artifactId>fastjson</artifactId>
64 </dependency>
65
66 <dependency>
67 <groupId>org.apache.commons</groupId>
68 <artifactId>commons-lang3</artifactId>
69 </dependency>
70
71 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-javadoc-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-release-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-surefire-plugin</artifactId>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>