2013-08-01 15:09:49 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-08-05 00:32:24 +08:00
|
|
|
<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">
|
2013-08-01 15:09:49 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2017-08-05 00:32:24 +08:00
|
|
|
<artifactId>spring-boot-tests</artifactId>
|
|
|
|
<version>${revision}</version>
|
2013-08-01 15:09:49 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-integration-tests</artifactId>
|
2015-02-24 08:53:53 +08:00
|
|
|
<packaging>pom</packaging>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Integration Tests</name>
|
|
|
|
<description>Spring Boot Integration Tests</description>
|
2013-08-01 15:09:49 +08:00
|
|
|
<properties>
|
2017-08-05 00:32:24 +08:00
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
2015-10-08 00:54:44 +08:00
|
|
|
<java.version>1.8</java.version>
|
2013-08-01 15:09:49 +08:00
|
|
|
</properties>
|
2015-02-24 08:53:53 +08:00
|
|
|
<modules>
|
2018-01-17 20:42:56 +08:00
|
|
|
<module>spring-boot-configuration-processor-tests</module>
|
2016-11-18 02:38:26 +08:00
|
|
|
<module>spring-boot-devtools-tests</module>
|
2017-08-05 23:51:28 +08:00
|
|
|
<module>spring-boot-server-tests</module>
|
2016-01-12 02:01:15 +08:00
|
|
|
<module>spring-boot-launch-script-tests</module>
|
2015-02-24 08:53:53 +08:00
|
|
|
</modules>
|
2017-08-05 00:32:24 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-08-01 15:09:49 +08:00
|
|
|
</project>
|