From 903defdf30d19a9f9bc63e5bd5ea7f875f1b00d5 Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Wed, 10 Feb 2021 10:31:03 +0100 Subject: [PATCH] Use IDEA ASM in kapt module --- .../kotlin-gradle-plugin-integration-tests/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts index 48ba118ee31..7530f173133 100644 --- a/libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts +++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/build.gradle.kts @@ -45,7 +45,7 @@ dependencies { // Workaround for missing transitive import of the common(project `kotlin-test-common` // for `kotlin-test-jvm` into the IDE: testCompileOnly(project(":kotlin-test:kotlin-test-common")) { isTransitive = false } - testCompileOnly("org.jetbrains.intellij.deps:asm-all:9.0") + compileOnly(intellijDep()) { includeJars("asm-all") } } // Aapt2 from Android Gradle Plugin 3.2 and below does not handle long paths on Windows.