blob: 482e8d2e50e8419c3a7bd7dcce8a36ac74121128 [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
16 <properties>
17 <infras.version>0.0.1-SNAPSHOT</infras.version>
18 </properties>
19
20 <dependencies>
21
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-starter</artifactId>
25 </dependency>
26
27 <dependency>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-starter-web</artifactId>
30 </dependency>
31
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-thymeleaf</artifactId>
35 </dependency>
36
37 <dependency>
38 <groupId>com.supwisdom.infras</groupId>
39 <artifactId>infras-lang</artifactId>
40 <version>${infras.version}</version>
41 </dependency>
42
43 <dependency>
44 <groupId>com.supwisdom.infras</groupId>
45 <artifactId>infras-mvc</artifactId>
46 <version>${infras.version}</version>
47 </dependency>
48
49
50 <!-- Test things -->
51 <dependency>
52 <groupId>org.testng</groupId>
53 <artifactId>testng</artifactId>
54 <scope>test</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-test</artifactId>
60 <scope>test</scope>
61 </dependency>
62
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-failsafe-plugin</artifactId>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-javadoc-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-release-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.jacoco</groupId>
85 <artifactId>jacoco-maven-plugin</artifactId>
86 </plugin>
87 </plugins>
88 </build>
89
90</project>