blob: 51766c4b22f5e09c71b5c9c2fc6c57a74063394a [file] [log] [blame]
chenbo0e267832018-08-21 11:19:05 +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>leaveschool-parent</artifactId>
8 <version>0.0.1-SNAPSHOT</version>
9 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>leaveschool-common</artifactId>
13 <packaging>jar</packaging>
14
chenbo34078bd2018-08-22 16:21:32 +080015 <properties>
16 <io.springfox.version>2.9.2</io.springfox.version>
17 </properties>
18
chenbo0e267832018-08-21 11:19:05 +080019 <dependencies>
20
21 <dependency>
22 <groupId>org.springframework.boot</groupId>
23 <artifactId>spring-boot-starter-web</artifactId>
24 <optional>true</optional>
25 </dependency>
26
27 <dependency>
28 <groupId>com.supwisdom.infras</groupId>
29 <artifactId>infras-data-jpa</artifactId>
30 </dependency>
chenbo7124c252018-08-30 14:28:34 +080031
32 <dependency>
33 <groupId>com.supwisdom.infras</groupId>
34 <artifactId>infras-beans</artifactId>
35 </dependency>
chenbo0e267832018-08-21 11:19:05 +080036
37 <dependency>
38 <groupId>commons-collections</groupId>
39 <artifactId>commons-collections</artifactId>
40 </dependency>
chenbo34078bd2018-08-22 16:21:32 +080041
42 <dependency>
43 <groupId>io.springfox</groupId>
44 <artifactId>springfox-swagger2</artifactId>
45 <version>${io.springfox.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>io.springfox</groupId>
49 <artifactId>springfox-swagger-ui</artifactId>
50 <version>${io.springfox.version}</version>
51 </dependency>
52
chenbo0e267832018-08-21 11:19:05 +080053
54 <!-- Test things -->
55 <dependency>
56 <groupId>org.testng</groupId>
57 <artifactId>testng</artifactId>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-starter-test</artifactId>
64 <scope>test</scope>
65 </dependency>
66
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-compiler-plugin</artifactId>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-failsafe-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-javadoc-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-release-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.jacoco</groupId>
89 <artifactId>jacoco-maven-plugin</artifactId>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>