blob: 3bd8bdebbb9f24065933575505459e3417515b3a [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>
29 <artifactId>spring-boot-starter-thymeleaf</artifactId>
30 </dependency>
31
32 <dependency>
33 <groupId>com.supwisdom.infras</groupId>
34 <artifactId>infras-lang</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080035 </dependency>
36
37 <dependency>
38 <groupId>com.supwisdom.infras</groupId>
39 <artifactId>infras-mvc</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080040 </dependency>
41
Daniel Qian6c6014c2018-07-18 11:32:42 +080042 <dependency>
43 <groupId>com.supwisdom.infras</groupId>
44 <artifactId>infras-object-mapper</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>com.supwisdom.infras</groupId>
49 <artifactId>infras-i18n</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>com.supwisdom.infras</groupId>
54 <artifactId>infras-pinyin</artifactId>
55 </dependency>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080056
57 <!-- Test things -->
58 <dependency>
59 <groupId>org.testng</groupId>
60 <artifactId>testng</artifactId>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-test</artifactId>
67 <scope>test</scope>
68 </dependency>
69
70 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-compiler-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-failsafe-plugin</artifactId>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-javadoc-plugin</artifactId>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-release-plugin</artifactId>
89 </plugin>
90 <plugin>
91 <groupId>org.jacoco</groupId>
92 <artifactId>jacoco-maven-plugin</artifactId>
93 </plugin>
94 </plugins>
95 </build>
96
97</project>