blob: d23ba918f9017e9f7588172f10a367fd6c38cc0b [file] [log] [blame]
Daniel Qianf6b89ce2018-07-17 18:40:57 +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>
刘洪青9cbbda22018-07-19 17:28:37 +08006 <groupId>com.supwisdom.leaveschool</groupId>
7 <artifactId>samples-parent</artifactId>
8 <version>0.0.1-SNAPSHOT</version>
Daniel Qianf6b89ce2018-07-17 18:40:57 +08009 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>sample-foo</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080013 <packaging>jar</packaging>
14
Daniel Qianf6b89ce2018-07-17 18:40:57 +080015 <dependencies>
16
17 <dependency>
18 <groupId>org.springframework.boot</groupId>
19 <artifactId>spring-boot-starter</artifactId>
20 </dependency>
21
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter-web</artifactId>
25 </dependency>
26
27 <dependency>
28 <groupId>org.springframework.boot</groupId>
Daniel Qian315ccce2018-07-20 10:09:00 +080029 <artifactId>spring-boot-starter-json</artifactId>
30 </dependency>
31
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080034 <artifactId>spring-boot-starter-thymeleaf</artifactId>
35 </dependency>
36
37 <dependency>
38 <groupId>com.supwisdom.infras</groupId>
39 <artifactId>infras-lang</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080040 </dependency>
41
42 <dependency>
43 <groupId>com.supwisdom.infras</groupId>
44 <artifactId>infras-mvc</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080045 </dependency>
46
Daniel Qian6c6014c2018-07-18 11:32:42 +080047 <dependency>
48 <groupId>com.supwisdom.infras</groupId>
49 <artifactId>infras-object-mapper</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>com.supwisdom.infras</groupId>
54 <artifactId>infras-i18n</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>com.supwisdom.infras</groupId>
59 <artifactId>infras-pinyin</artifactId>
60 </dependency>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080061
62 <!-- Test things -->
63 <dependency>
64 <groupId>org.testng</groupId>
65 <artifactId>testng</artifactId>
66 <scope>test</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-test</artifactId>
72 <scope>test</scope>
73 </dependency>
74
75 </dependencies>
76
77 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-compiler-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-failsafe-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-javadoc-plugin</artifactId>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-release-plugin</artifactId>
94 </plugin>
95 <plugin>
96 <groupId>org.jacoco</groupId>
97 <artifactId>jacoco-maven-plugin</artifactId>
98 </plugin>
99 </plugins>
100 </build>
101
102</project>