blob: 33eb022bd549c153011c304d2271620e13b75b68 [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>
刘洪青281d11f2018-08-03 16:51:42 +080056 <artifactId>infras-security</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>com.supwisdom.infras</groupId>
刘洪青f6b66112018-08-02 15:42:43 +080061 <artifactId>infras-mvc</artifactId>
62 </dependency>
63
64 <dependency>
65 <groupId>com.supwisdom.infras</groupId>
66 <artifactId>infras-object-mapper</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>com.supwisdom.infras</groupId>
71 <artifactId>infras-i18n</artifactId>
72 </dependency>
73
刘洪青f6b66112018-08-02 15:42:43 +080074 <dependency>
75 <groupId>com.supwisdom.infras</groupId>
76 <artifactId>infras-lang</artifactId>
77 </dependency>
78
刘洪青d49e4942018-08-03 16:08:44 +080079 <!--
刘洪青f6b66112018-08-02 15:42:43 +080080 <dependency>
81 <groupId>com.supwisdom.infras</groupId>
82 <artifactId>infras-pinyin</artifactId>
83 </dependency>
84 -->
85
86 <!-- Test things -->
87 <dependency>
88 <groupId>org.testng</groupId>
89 <artifactId>testng</artifactId>
90 <scope>test</scope>
91 </dependency>
92
93 <dependency>
94 <groupId>org.springframework.boot</groupId>
95 <artifactId>spring-boot-starter-test</artifactId>
96 <scope>test</scope>
97 </dependency>
98
99 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-compiler-plugin</artifactId>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-failsafe-plugin</artifactId>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-javadoc-plugin</artifactId>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-release-plugin</artifactId>
118 </plugin>
119 <plugin>
120 <groupId>org.jacoco</groupId>
121 <artifactId>jacoco-maven-plugin</artifactId>
122 </plugin>
123 </plugins>
124 </build>
125
126</project>