Skip to content

Commit 2fe5064

Browse files
committed
Remove unneeded exclude from Gradle build
1 parent 4221a34 commit 2fe5064

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

build.gradle

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -874,16 +874,9 @@ project("spring-webflux") {
874874
testRuntime("org.webjars:underscorejs:1.8.3")
875875
testRuntime("org.jruby:jruby:9.1.7.0")
876876
testRuntime("org.python:jython-standalone:2.5.3")
877-
// Ideally, kotlin-script-runtime should be enough for JSR-223, but that's not
878-
// the case yet, so we depend on kotlin-script-util and exclude these
879-
// dependencies only used for artifact retrieval. Point raised to Kotlin team.
880877
testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}")
881878
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
882-
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") {
883-
exclude group: "com.jcabi", module: "jcabi-aether"
884-
exclude group: "org.apache.maven", module: "maven-core"
885-
exclude group: "org.sonatype.aether", module: "aether-api"
886-
}
879+
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")
887880
}
888881

889882
if (JavaVersion.current().java9Compatible) {
@@ -988,16 +981,9 @@ project("spring-webmvc") {
988981
testCompile("org.mozilla:rhino:1.7.7.1")
989982
testRuntime("org.jruby:jruby:9.1.7.0")
990983
testRuntime("org.python:jython-standalone:2.5.3")
991-
// Ideally, kotlin-script-runtime should be enough for JSR-223, but that's not
992-
// the case yet, so we depend on kotlin-script-util and exclude these
993-
// dependencies only used for artifact retrieval. Point raised to Kotlin team.
994984
testRuntime("org.jetbrains.kotlin:kotlin-compiler:${kotlinVersion}")
995985
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
996-
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}") {
997-
exclude group: "com.jcabi", module: "jcabi-aether"
998-
exclude group: "org.apache.maven", module: "maven-core"
999-
exclude group: "org.sonatype.aether", module: "aether-api"
1000-
}
986+
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")
1001987
testRuntime("org.webjars:underscorejs:1.8.3")
1002988
testRuntime("org.glassfish:javax.el:3.0.1-b08")
1003989
testRuntime("com.sun.xml.bind:jaxb-core:${jaxbVersion}")

0 commit comments

Comments
 (0)