From 2fe5064dbed7b11828978f3de66af1b1c5b985fa Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Mon, 20 Feb 2017 11:47:48 +0100 Subject: [PATCH] Remove unneeded exclude from Gradle build --- build.gradle | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/build.gradle b/build.gradle index b5ce865aba..dd50cf376d 100644 --- a/build.gradle +++ b/build.gradle @@ -874,16 +874,9 @@ project("spring-webflux") { testRuntime("org.webjars:underscorejs:1.8.3") testRuntime("org.jruby:jruby:9.1.7.0") testRuntime("org.python:jython-standalone:2.5.3") - // Ideally, kotlin-script-runtime should be enough for JSR-223, but that's not - // the case yet, so we depend on kotlin-script-util and exclude these - // dependencies only used for artifact retrieval. Point raised to Kotlin team. testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}") testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}") - testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") { - exclude group: "com.jcabi", module: "jcabi-aether" - exclude group: "org.apache.maven", module: "maven-core" - exclude group: "org.sonatype.aether", module: "aether-api" - } + testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") } if (JavaVersion.current().java9Compatible) { @@ -988,16 +981,9 @@ project("spring-webmvc") { testCompile("org.mozilla:rhino:1.7.7.1") testRuntime("org.jruby:jruby:9.1.7.0") testRuntime("org.python:jython-standalone:2.5.3") - // Ideally, kotlin-script-runtime should be enough for JSR-223, but that's not - // the case yet, so we depend on kotlin-script-util and exclude these - // dependencies only used for artifact retrieval. Point raised to Kotlin team. testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}") testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}") - testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") { - exclude group: "com.jcabi", module: "jcabi-aether" - exclude group: "org.apache.maven", module: "maven-core" - exclude group: "org.sonatype.aether", module: "aether-api" - } + testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") testRuntime("org.webjars:underscorejs:1.8.3") testRuntime("org.glassfish:javax.el:3.0.1-b08") testRuntime("com.sun.xml.bind:jaxb-core:${jaxbVersion}")