2015-02-10 13:08:11 +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>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2015-02-24 08:53:53 +08:00
|
|
|
<artifactId>spring-boot-integration-tests</artifactId>
|
2017-08-05 00:32:24 +08:00
|
|
|
<version>${revision}</version>
|
2015-02-10 13:08:11 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-security-tests</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Boot Security Tests</name>
|
|
|
|
<description>${project.name}</description>
|
2015-02-24 08:53:53 +08:00
|
|
|
<properties>
|
2017-08-05 00:32:24 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2015-02-24 08:53:53 +08:00
|
|
|
</properties>
|
2015-02-10 13:08:11 +08:00
|
|
|
<modules>
|
2015-10-15 14:25:24 +08:00
|
|
|
<module>spring-boot-security-test-web-helloworld</module>
|
2015-02-10 13:08:11 +08:00
|
|
|
</modules>
|
|
|
|
</project>
|