Browse Source

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).
pull/13061/merge
Andy Wilkinson 8 years ago
parent
commit
2bcf29913d
  1. 4
      spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml

4
spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/pom.xml

@ -310,9 +310,9 @@ @@ -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>

Loading…
Cancel
Save