2013-06-13 08:35:42 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2013-08-02 18:58:53 +08:00
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
2013-06-13 08:35:42 +08:00
|
|
|
</parent>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2013-06-13 08:35:42 +08:00
|
|
|
<packaging>jar</packaging>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
|
|
|
</properties>
|
2013-06-13 08:35:42 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2013-06-13 08:35:42 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
2013-07-18 20:36:27 +08:00
|
|
|
<artifactId>spring-security-config</artifactId>
|
2013-06-13 08:35:42 +08:00
|
|
|
</dependency>
|
2013-07-14 13:46:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
</dependency>
|
2013-06-13 08:35:42 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|