Browse Source

Disable temporarily Kotlin compiler to fix JDK 9 build

pull/1246/head
Sebastien Deleuze 9 years ago
parent
commit
4660ef701e
  1. 12
      build.gradle

12
build.gradle

@ -326,7 +326,8 @@ project("spring-build-src") { @@ -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") { @@ -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") { @@ -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") { @@ -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"))

Loading…
Cancel
Save