Disable embedded server integration tests on Java 9

See gh-10455
This commit is contained in:
Stephane Nicoll 2017-09-29 11:47:11 +02:00
parent 8f8b1371b7
commit 8637547509
1 changed files with 22 additions and 0 deletions

View File

@ -63,4 +63,26 @@
</plugin>
</plugins>
</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>
<excludes>
<exclude>**/EmbeddedServletContainerJarDevelopmentIntegrationTests.java</exclude>
<exclude>**/EmbeddedServletContainerWarDevelopmentIntegrationTests.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>