You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-tests</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<artifactId>spring-boot-integration-tests</artifactId> |
|
<packaging>pom</packaging> |
|
<name>Spring Boot Integration Tests</name> |
|
<description>Spring Boot Integration Tests</description> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
<modules> |
|
<module>spring-boot-configuration-processor-tests</module> |
|
<module>spring-boot-devtools-tests</module> |
|
<module>spring-boot-server-tests</module> |
|
<module>spring-boot-launch-script-tests</module> |
|
</modules> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-install-plugin</artifactId> |
|
<configuration> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|