blob: a3dfe85a419cc27c005c168c51d4f6b61e8e15af [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>
6 <groupId>com.supwisdom.buildcommons</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.0.1.RELEASE-1.0-SNAPSHOT</version>
9 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>sample-foo</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <packaging>jar</packaging>
15
Daniel Qian6c6014c2018-07-18 11:32:42 +080016 <dependencyManagement>
17 <dependencies>
18 <dependency>
19 <groupId>com.supwisdom.leaveschool</groupId>
20 <artifactId>samples-dependencies</artifactId>
21 <version>${project.version}</version>
22 <type>pom</type>
23 <scope>import</scope>
24 </dependency>
25 </dependencies>
26 </dependencyManagement>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080027
28 <dependencies>
29
30 <dependency>
31 <groupId>org.springframework.boot</groupId>
32 <artifactId>spring-boot-starter</artifactId>
33 </dependency>
34
35 <dependency>
36 <groupId>org.springframework.boot</groupId>
37 <artifactId>spring-boot-starter-web</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-thymeleaf</artifactId>
43 </dependency>
44
45 <dependency>
46 <groupId>com.supwisdom.infras</groupId>
47 <artifactId>infras-lang</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080048 </dependency>
49
50 <dependency>
51 <groupId>com.supwisdom.infras</groupId>
52 <artifactId>infras-mvc</artifactId>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080053 </dependency>
54
Daniel Qian6c6014c2018-07-18 11:32:42 +080055 <dependency>
56 <groupId>com.supwisdom.infras</groupId>
57 <artifactId>infras-object-mapper</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>com.supwisdom.infras</groupId>
62 <artifactId>infras-i18n</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.supwisdom.infras</groupId>
67 <artifactId>infras-pinyin</artifactId>
68 </dependency>
Daniel Qianf6b89ce2018-07-17 18:40:57 +080069
70 <!-- Test things -->
71 <dependency>
72 <groupId>org.testng</groupId>
73 <artifactId>testng</artifactId>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-test</artifactId>
80 <scope>test</scope>
81 </dependency>
82
83 </dependencies>
84
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-compiler-plugin</artifactId>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-failsafe-plugin</artifactId>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-javadoc-plugin</artifactId>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-release-plugin</artifactId>
102 </plugin>
103 <plugin>
104 <groupId>org.jacoco</groupId>
105 <artifactId>jacoco-maven-plugin</artifactId>
106 </plugin>
107 </plugins>
108 </build>
109
110</project>