Restrict Liberty deployment tests to Java 8

OpenLiberty does not yet support Java 9 or 10 and stopping the server
currently hangs when using Java 10.

Closes gh-13141
pull/13161/head
Andy Wilkinson 7 years ago
parent 6ddf1c27dd
commit 7a27882d62

@ -42,6 +42,12 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<profiles>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@ -84,4 +90,6 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</profile>
</profiles>
</project> </project>

Loading…
Cancel
Save