Browse Source

Disable devtools integration tests on Java 9

See gh-10454
pull/10459/head
Stephane Nicoll 8 years ago
parent
commit
8f8b1371b7
  1. 19
      spring-boot-integration-tests/spring-boot-devtools-tests/pom.xml

19
spring-boot-integration-tests/spring-boot-devtools-tests/pom.xml

@ -87,4 +87,23 @@ @@ -87,4 +87,23 @@
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>java9</id>
<activation>
<jdk>9</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

Loading…
Cancel
Save