From 4660ef701e5ec027d8c8a01a638870e454a47ca8 Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Fri, 25 Nov 2016 11:38:09 +0100 Subject: [PATCH] Disable temporarily Kotlin compiler to fix JDK 9 build --- build.gradle | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index c6751fb634e..f64f1b7b864 100644 --- a/build.gradle +++ b/build.gradle @@ -326,7 +326,8 @@ project("spring-build-src") { project("spring-core") { description = "Spring Core" - apply plugin: "kotlin" + // Disabled since Kotlin compiler does not support JDK 9 yet + //apply plugin: "kotlin" // As of Spring 4.0.3, spring-core includes asm 5.x and repackages cglib 3.2, inlining // both into the spring-core jar. cglib 3.2 itself depends on asm 5.x and is therefore @@ -569,7 +570,8 @@ project("spring-oxm") { project("spring-messaging") { description = "Spring Messaging" - apply plugin: "kotlin" + // Disabled since Kotlin compiler does not support JDK 9 yet + //apply plugin: "kotlin" dependencies { compile(project(":spring-beans")) @@ -716,7 +718,8 @@ project("spring-web") { description = "Spring Web" apply plugin: "groovy" - apply plugin: "kotlin" + // Disabled since Kotlin compiler does not support JDK 9 yet + //apply plugin: "kotlin" dependencies { compile(project(":spring-aop")) // for JaxWsPortProxyFactoryBean @@ -805,7 +808,8 @@ project("spring-web") { project("spring-web-reactive") { description = "Spring Web Reactive" - apply plugin: "kotlin" + // Disabled since Kotlin compiler does not support JDK 9 yet + //apply plugin: "kotlin" dependencies { compile(project(":spring-core"))