blob: e6c0032483d7accdd96869fdfb9b35c8774af6df [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>
刘洪青d58bc052018-08-06 22:04:56 +080018 <groupId>com.supwisdom.leaveschool</groupId>
19 <artifactId>sample-common</artifactId>
20 </dependency>
21
22 <dependency>
刘洪青f6b66112018-08-02 15:42:43 +080023 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter</artifactId>
25 </dependency>
26
27 <!-- 微服务 健康监控 -->
28 <!-- <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-actuator</artifactId>
31 </dependency> -->
32
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-web</artifactId>
36 </dependency>
刘洪青d49e4942018-08-03 16:08:44 +080037
刘洪青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>
刘洪青99587262018-08-06 17:08:09 +080067 <groupId>mysql</groupId>
68 <artifactId>mysql-connector-java</artifactId>
69 </dependency>
70
刘洪青f6b66112018-08-02 15:42:43 +080071 <!-- Test things -->
72 <dependency>
73 <groupId>org.testng</groupId>
74 <artifactId>testng</artifactId>
75 <scope>test</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-test</artifactId>
81 <scope>test</scope>
82 </dependency>
83
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 </plugin>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-failsafe-plugin</artifactId>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-javadoc-plugin</artifactId>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-release-plugin</artifactId>
103 </plugin>
104 <plugin>
105 <groupId>org.jacoco</groupId>
106 <artifactId>jacoco-maven-plugin</artifactId>
107 </plugin>
108 </plugins>
109 </build>
110
111</project>