blob: 0b782b5b4b3acee214b2745fbf0a2c3c74a558d1 [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>
刘洪青d6c40382018-08-10 16:10:28 +080067 <groupId>org.springframework.security</groupId>
68 <artifactId>spring-security-core</artifactId>
69 </dependency>
70
71 <dependency>
刘洪青99587262018-08-06 17:08:09 +080072 <groupId>mysql</groupId>
73 <artifactId>mysql-connector-java</artifactId>
刘洪青d6c40382018-08-10 16:10:28 +080074 <scope>runtime</scope>
刘洪青99587262018-08-06 17:08:09 +080075 </dependency>
76
刘洪青f6b66112018-08-02 15:42:43 +080077 <!-- Test things -->
78 <dependency>
79 <groupId>org.testng</groupId>
80 <artifactId>testng</artifactId>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-starter-test</artifactId>
87 <scope>test</scope>
88 </dependency>
89
刘洪青d6c40382018-08-10 16:10:28 +080090 <dependency>
91 <groupId>com.h2database</groupId>
92 <artifactId>h2</artifactId>
93 <scope>test</scope>
94 </dependency>
95
刘洪青f6b66112018-08-02 15:42:43 +080096 </dependencies>
97
98 <build>
99 <plugins>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-compiler-plugin</artifactId>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-failsafe-plugin</artifactId>
107 </plugin>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-javadoc-plugin</artifactId>
111 </plugin>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-release-plugin</artifactId>
115 </plugin>
116 <plugin>
117 <groupId>org.jacoco</groupId>
118 <artifactId>jacoco-maven-plugin</artifactId>
119 </plugin>
120 </plugins>
121 </build>
122
123</project>