blob: dcfe763ff3f40bd277bbb7d2f88b41024bf42fbe [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>
9 <version>0.0.1-SNAPSHOT</version>
10 <relativePath>../../</relativePath>
11 </parent>
12
13 <groupId>com.supwisdom.institute</groupId>
14 <artifactId>sw-backend-common-core</artifactId>
15 <version>0.0.1-SNAPSHOT</version>
16 <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>
58 <groupId>com.alibaba</groupId>
59 <artifactId>fastjson</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.commons</groupId>
64 <artifactId>commons-lang3</artifactId>
65 </dependency>
66
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-compiler-plugin</artifactId>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-javadoc-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-release-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-surefire-plugin</artifactId>
86 </plugin>
87 </plugins>
88 </build>
89
90</project>