Disable cassandra test on Java 9

See gh-10453
This commit is contained in:
Stephane Nicoll 2017-09-29 10:34:46 +02:00
parent eefdbb7341
commit 4caeed2ac4

View File

@ -107,4 +107,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>