Commit 86375475 authored by Stephane Nicoll's avatar Stephane Nicoll

Disable embedded server integration tests on Java 9

See gh-10455
parent 8f8b1371
...@@ -63,4 +63,26 @@ ...@@ -63,4 +63,26 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </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> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment