blob: 2be58d3f724344e9bd8a33b671272f4841fe0a53 [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>
31
32 <dependency>
33 <groupId>commons-collections</groupId>
34 <artifactId>commons-collections</artifactId>
35 </dependency>
chenbo34078bd2018-08-22 16:21:32 +080036
37 <dependency>
38 <groupId>io.springfox</groupId>
39 <artifactId>springfox-swagger2</artifactId>
40 <version>${io.springfox.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>io.springfox</groupId>
44 <artifactId>springfox-swagger-ui</artifactId>
45 <version>${io.springfox.version}</version>
46 </dependency>
47
chenbo0e267832018-08-21 11:19:05 +080048
49 <!-- Test things -->
50 <dependency>
51 <groupId>org.testng</groupId>
52 <artifactId>testng</artifactId>
53 <scope>test</scope>
54 </dependency>
55
56 <dependency>
57 <groupId>org.springframework.boot</groupId>
58 <artifactId>spring-boot-starter-test</artifactId>
59 <scope>test</scope>
60 </dependency>
61
62 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-compiler-plugin</artifactId>
69 </plugin>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-failsafe-plugin</artifactId>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-javadoc-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-release-plugin</artifactId>
81 </plugin>
82 <plugin>
83 <groupId>org.jacoco</groupId>
84 <artifactId>jacoco-maven-plugin</artifactId>
85 </plugin>
86 </plugins>
87 </build>
88
89</project>