blob: 4b69173f70943247b09e8781fac95f284878fe2f [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>
8 <artifactId>sw-backend-parent</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +08009 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080010 <relativePath>../../</relativePath>
11 </parent>
12
13 <groupId>com.supwisdom.institute</groupId>
14 <artifactId>sw-backend-common-core</artifactId>
刘洪青ff545bc2019-10-11 10:08:47 +080015 <version>0.0.2-SNAPSHOT</version>
刘洪青e071d362019-08-16 09:39:49 +080016 <packaging>jar</packaging>
17
18 <name>Supwisdom Backend Framework Common Core</name>
19 <description>Supwisdom Backend Framework Common Core project</description>
20
21 <dependencies>
22
23 <dependency>
24 <groupId>org.projectlombok</groupId>
25 <artifactId>lombok</artifactId>
26 <scope>provided</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>javax.servlet</groupId>
31 <artifactId>javax.servlet-api</artifactId>
32 <scope>provided</scope>
33 </dependency>
34
35
36 <dependency>
37 <groupId>org.springframework.cloud</groupId>
38 <artifactId>spring-cloud-starter-openfeign</artifactId>
刘洪青859b9972019-08-20 15:43:48 +080039 <optional>true</optional>
刘洪青e071d362019-08-16 09:39:49 +080040 </dependency>
刘洪青98963ab2019-09-05 18:10:09 +080041 <dependency>
42 <groupId>com.netflix.feign</groupId>
43 <artifactId>feign-httpclient</artifactId>
44 <optional>true</optional>
45 </dependency>
刘洪青fc09a452019-09-09 09:27:08 +080046 <dependency>
47 <groupId>org.apache.httpcomponents</groupId>
48 <artifactId>httpclient</artifactId>
49 <optional>true</optional>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.httpcomponents</groupId>
53 <artifactId>httpcore</artifactId>
54 <optional>true</optional>
55 </dependency>
刘洪青98963ab2019-09-05 18:10:09 +080056
刘洪青e071d362019-08-16 09:39:49 +080057 <dependency>
刘洪青4fa11832019-09-19 18:06:26 +080058 <groupId>commons-codec</groupId>
59 <artifactId>commons-codec</artifactId>
60 </dependency>
61
62 <dependency>
刘洪青e071d362019-08-16 09:39:49 +080063 <groupId>com.alibaba</groupId>
64 <artifactId>fastjson</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.apache.commons</groupId>
69 <artifactId>commons-lang3</artifactId>
70 </dependency>
71
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-compiler-plugin</artifactId>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-javadoc-plugin</artifactId>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-release-plugin</artifactId>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-surefire-plugin</artifactId>
91 </plugin>
92 </plugins>
93 </build>
94
95</project>