blob: 23bbb2e0af3ff10bba809c44513b495bb04f888f [file] [log] [blame]
刘洪青f6b66112018-08-02 15:42:43 +08001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>com.supwisdom.leaveschool</groupId>
7 <artifactId>samples-parent</artifactId>
8 <version>0.0.1-SNAPSHOT</version>
9 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>sample-user</artifactId>
13 <packaging>jar</packaging>
14
15 <dependencies>
16
17 <dependency>
18 <groupId>org.springframework.boot</groupId>
19 <artifactId>spring-boot-starter</artifactId>
20 </dependency>
21
22 <!-- 微服务 健康监控 -->
23 <!-- <dependency>
24 <groupId>org.springframework.boot</groupId>
25 <artifactId>spring-boot-starter-actuator</artifactId>
26 </dependency> -->
27
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-web</artifactId>
31 </dependency>
32
刘洪青d49e4942018-08-03 16:08:44 +080033 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-data-jpa</artifactId>
36 </dependency>
37
38 <dependency>
39 <groupId>org.projectlombok</groupId>
40 <artifactId>lombok</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>mysql</groupId>
45 <artifactId>mysql-connector-java</artifactId>
46 </dependency>
47
48 <dependency>
49 <groupId>commons-collections</groupId>
50 <artifactId>commons-collections</artifactId>
51 </dependency>
52
刘洪青f6b66112018-08-02 15:42:43 +080053
54 <dependency>
55 <groupId>com.supwisdom.infras</groupId>
56 <artifactId>infras-mvc</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>com.supwisdom.infras</groupId>
61 <artifactId>infras-object-mapper</artifactId>
62 </dependency>
63
64 <dependency>
65 <groupId>com.supwisdom.infras</groupId>
66 <artifactId>infras-i18n</artifactId>
67 </dependency>
68
刘洪青f6b66112018-08-02 15:42:43 +080069 <dependency>
70 <groupId>com.supwisdom.infras</groupId>
71 <artifactId>infras-lang</artifactId>
72 </dependency>
73
刘洪青d49e4942018-08-03 16:08:44 +080074 <!--
刘洪青f6b66112018-08-02 15:42:43 +080075 <dependency>
76 <groupId>com.supwisdom.infras</groupId>
77 <artifactId>infras-pinyin</artifactId>
78 </dependency>
79 -->
80
81 <!-- Test things -->
82 <dependency>
83 <groupId>org.testng</groupId>
84 <artifactId>testng</artifactId>
85 <scope>test</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>org.springframework.boot</groupId>
90 <artifactId>spring-boot-starter-test</artifactId>
91 <scope>test</scope>
92 </dependency>
93
94 </dependencies>
95
96 <build>
97 <plugins>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-compiler-plugin</artifactId>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-failsafe-plugin</artifactId>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-javadoc-plugin</artifactId>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-release-plugin</artifactId>
113 </plugin>
114 <plugin>
115 <groupId>org.jacoco</groupId>
116 <artifactId>jacoco-maven-plugin</artifactId>
117 </plugin>
118 </plugins>
119 </build>
120
121</project>