blob: ac360d718252a9e0ecf16aaeeaa6c19be2ad96d5 [file] [log] [blame]
刘洪青a0bb8a92018-07-19 17:30:07 +08001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
刘洪青2d0f5e22018-07-26 14:01:50 +08002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
刘洪青a0bb8a92018-07-19 17:30:07 +08003 <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>
刘洪青2d0f5e22018-07-26 14:01:50 +080012 <artifactId>sample-security</artifactId>
刘洪青a0bb8a92018-07-19 17:30:07 +080013 <packaging>jar</packaging>
14
刘洪青2d0f5e22018-07-26 14:01:50 +080015
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>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter-thymeleaf</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.thymeleaf.extras</groupId>
34 <artifactId>thymeleaf-extras-springsecurity4</artifactId>
35 </dependency>
36
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-security</artifactId>
40 </dependency>
41
42 <!-- <dependency>
43 <groupId>org.springframework.security</groupId>
44 <artifactId>spring-security-web</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.security</groupId>
48 <artifactId>spring-security-config</artifactId>
49 </dependency> -->
50
51
52 <dependency>
53 <groupId>org.springframework.security</groupId>
54 <artifactId>spring-security-cas</artifactId>
55 </dependency>
56
57
58 <!-- Test things -->
59 <dependency>
60 <groupId>org.testng</groupId>
61 <artifactId>testng</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.springframework.boot</groupId>
67 <artifactId>spring-boot-starter-test</artifactId>
68 <scope>test</scope>
69 </dependency>
70
71 </dependencies>
72
刘洪青a0bb8a92018-07-19 17:30:07 +080073 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-failsafe-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-javadoc-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-release-plugin</artifactId>
90 </plugin>
91 <plugin>
92 <groupId>org.jacoco</groupId>
93 <artifactId>jacoco-maven-plugin</artifactId>
94 </plugin>
95 </plugins>
96 </build>
97
98</project>