blob: e7d64928f7b334b1f3f94d1b1a87c801504d25d2 [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>
刘洪青d49e4942018-08-03 16:08:44 +080034 <groupId>commons-collections</groupId>
35 <artifactId>commons-collections</artifactId>
36 </dependency>
37
刘洪青f6b66112018-08-02 15:42:43 +080038
39 <dependency>
40 <groupId>com.supwisdom.infras</groupId>
41 <artifactId>infras-mvc</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>com.supwisdom.infras</groupId>
46 <artifactId>infras-object-mapper</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>com.supwisdom.infras</groupId>
51 <artifactId>infras-i18n</artifactId>
52 </dependency>
53
刘洪青f6b66112018-08-02 15:42:43 +080054 <dependency>
55 <groupId>com.supwisdom.infras</groupId>
56 <artifactId>infras-lang</artifactId>
57 </dependency>
58
刘洪青d49e4942018-08-03 16:08:44 +080059 <!--
刘洪青f6b66112018-08-02 15:42:43 +080060 <dependency>
61 <groupId>com.supwisdom.infras</groupId>
62 <artifactId>infras-pinyin</artifactId>
63 </dependency>
64 -->
65
刘洪青99587262018-08-06 17:08:09 +080066 <dependency>
67 <groupId>com.supwisdom.infras</groupId>
68 <artifactId>infras-data-jpa</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>mysql</groupId>
73 <artifactId>mysql-connector-java</artifactId>
74 </dependency>
75
刘洪青f6b66112018-08-02 15:42:43 +080076 <!-- Test things -->
77 <dependency>
78 <groupId>org.testng</groupId>
79 <artifactId>testng</artifactId>
80 <scope>test</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-test</artifactId>
86 <scope>test</scope>
87 </dependency>
88
89 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-compiler-plugin</artifactId>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-failsafe-plugin</artifactId>
100 </plugin>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-javadoc-plugin</artifactId>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-release-plugin</artifactId>
108 </plugin>
109 <plugin>
110 <groupId>org.jacoco</groupId>
111 <artifactId>jacoco-maven-plugin</artifactId>
112 </plugin>
113 </plugins>
114 </build>
115
116</project>