From 5d84aec8f7476faabb91e9e2110400bde58872ed Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Thu, 9 Nov 2017 12:53:18 +0100 Subject: [PATCH] Clean dependencies in 'tests-java8' module --- compiler/tests-java8/build.gradle.kts | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/compiler/tests-java8/build.gradle.kts b/compiler/tests-java8/build.gradle.kts index b3960eefe7b..16fc146f508 100644 --- a/compiler/tests-java8/build.gradle.kts +++ b/compiler/tests-java8/build.gradle.kts @@ -3,28 +3,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile apply { plugin("kotlin") } dependencies { - testCompile(commonDep("junit:junit")) - testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) - testCompile(projectDist(":kotlin-test:kotlin-test-junit")) - testCompile(project(":core")) - testCompile(project(":compiler:util")) - testCompile(project(":compiler:backend")) - testCompile(project(":compiler:frontend")) - testCompile(project(":compiler:frontend.java")) - testCompile(project(":compiler:cli")) - testCompile(project(":compiler:serialization")) - testCompile(ideaSdkDeps("openapi", "idea", "util", "asm-all")) - // deps below are test runtime deps, but made test compile to split compilation and running to reduce mem req - testCompile(projectDist(":kotlin-stdlib")) - testCompile(projectDist(":kotlin-script-runtime")) - testCompile(projectDist(":kotlin-reflect")) - testCompile(projectTests(":compiler")) testCompile(projectTests(":compiler:tests-common")) - testCompile(projectTests(":generators:test-generator")) - testRuntime(projectRuntimeJar(":kotlin-preloader")) - testRuntime(preloadedDeps("dx", subdir = "android-5.0/lib")) - testRuntime(ideaSdkCoreDeps("*.jar")) - testRuntime(ideaSdkDeps("*.jar")) + testCompile(projectTests(":compiler")) } sourceSets {