Commit 2bcf2991 authored by Andy Wilkinson's avatar Andy Wilkinson

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).
parent d70434a2
...@@ -310,9 +310,9 @@ ...@@ -310,9 +310,9 @@
</build> </build>
</profile> </profile>
<profile> <profile>
<id>java10</id> <id>java9</id>
<activation> <activation>
<jdk>10</jdk> <jdk>[9,)</jdk>
</activation> </activation>
<properties> <properties>
<skip.gradle.build>true</skip.gradle.build> <skip.gradle.build>true</skip.gradle.build>
......
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