Skip building the Gradle plugin on Java 9 as well as 10

Upgrading the JDK 9-based build to use JDK 9.0.4 has revealed that
Gradle 4.0.x doesn't work with it as it fails to parse the 9.0.4
version number.

This commit disables building the Gradle plugin on Java 9 (as we
had already done for Java 10) until we decide what to do
(see gh-12333).
This commit is contained in:
Andy Wilkinson
2018-05-04 11:40:35 +01:00
parent d70434a27d
commit 2bcf29913d

View File

@@ -310,9 +310,9 @@
</build>
</profile>
<profile>
<id>java10</id>
<id>java9</id>
<activation>
<jdk>10</jdk>
<jdk>[9,)</jdk>
</activation>
<properties>
<skip.gradle.build>true</skip.gradle.build>