blob: ebb72ead93022e435703426a14a299350130a707 [file] [log] [blame]
刘洪青f6b66112018-08-02 15:42:43 +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>samples-parent</artifactId>
8 <version>0.0.1-SNAPSHOT</version>
9 </parent>
10
11 <groupId>com.supwisdom.leaveschool</groupId>
12 <artifactId>sample-auth</artifactId>
13 <packaging>jar</packaging>
14
15
16 <dependencies>
17
18 <dependency>
19 <groupId>org.springframework.boot</groupId>
20 <artifactId>spring-boot-starter</artifactId>
21 </dependency>
22
23 <dependency>
24 <groupId>org.springframework.boot</groupId>
25 <artifactId>spring-boot-starter-web</artifactId>
26 </dependency>
27
28 <dependency>
29 <groupId>com.supwisdom.infras</groupId>
30 <artifactId>infras-security</artifactId>
31 </dependency>
32
33 <dependency>
34 <groupId>org.springframework.security</groupId>
35 <artifactId>spring-security-cas</artifactId>
36 </dependency>
37
38
39 <dependency>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-thymeleaf</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.thymeleaf.extras</groupId>
45 <artifactId>thymeleaf-extras-springsecurity4</artifactId>
46 </dependency>
47
48
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>