blob: 1935e28f9ce4ba2b0880e6f0d81af2978eb17d00 [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>
刘洪青f3439452019-09-03 11:09:02 +080014 <artifactId>sw-backend-base-api</artifactId>
刘洪青e071d362019-08-16 09:39:49 +080015 <version>0.0.1-SNAPSHOT</version>
16 <packaging>jar</packaging>
17
刘洪青f3439452019-09-03 11:09:02 +080018 <name>Supwisdom Backend Framework Base API</name>
19 <description>Supwisdom Backend Framework Base API project</description>
刘洪青e071d362019-08-16 09:39:49 +080020
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>
刘洪青f6254df2019-08-19 14:40:13 +080037 <groupId>org.springframework.boot</groupId>
38 <artifactId>spring-boot-starter</artifactId>
39 </dependency>
40
刘洪青859b9972019-08-20 15:43:48 +080041 <dependency>
42 <groupId>org.springframework.boot</groupId>
43 <artifactId>spring-boot-starter-web</artifactId>
44 </dependency>
45
刘洪青f6254df2019-08-19 14:40:13 +080046
47 <dependency>
刘洪青e071d362019-08-16 09:39:49 +080048 <groupId>com.supwisdom.institute</groupId>
49 <artifactId>sw-backend-common-core</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>com.supwisdom.institute</groupId>
54 <artifactId>sw-backend-common-utils</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>com.supwisdom.institute</groupId>
59 <artifactId>sw-backend-common-framework</artifactId>
60 </dependency>
61
62
63 <dependency>
64 <groupId>com.supwisdom.institute</groupId>
刘洪青f3439452019-09-03 11:09:02 +080065 <artifactId>sw-backend-base-domain</artifactId>
刘洪青e071d362019-08-16 09:39:49 +080066 </dependency>
67
68
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
刘洪青e071d362019-08-16 09:39:49 +080071 <artifactId>spring-boot-starter-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74
75 </dependencies>
76
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-compiler-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-javadoc-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-release-plugin</artifactId>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-surefire-plugin</artifactId>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-failsafe-plugin</artifactId>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-jar-plugin</artifactId>
102 </plugin>
103 <plugin>
104 <groupId>org.jacoco</groupId>
105 <artifactId>jacoco-maven-plugin</artifactId>
106 </plugin>
107 </plugins>
108 </build>
109
110</project>