Skip to content

Commit 4caeed2

Browse files
committed
Disable cassandra test on Java 9
See gh-10453
1 parent eefdbb7 commit 4caeed2

File tree

1 file changed

+19
-0
lines changed
  • spring-boot-samples/spring-boot-sample-data-cassandra

1 file changed

+19
-0
lines changed

spring-boot-samples/spring-boot-sample-data-cassandra/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,23 @@
107107
</plugins>
108108
</pluginManagement>
109109
</build>
110+
<profiles>
111+
<profile>
112+
<id>java9</id>
113+
<activation>
114+
<jdk>9</jdk>
115+
</activation>
116+
<build>
117+
<plugins>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-surefire-plugin</artifactId>
121+
<configuration>
122+
<skipTests>true</skipTests>
123+
</configuration>
124+
</plugin>
125+
</plugins>
126+
</build>
127+
</profile>
128+
</profiles>
110129
</project>

0 commit comments

Comments
 (0)