Remove idea-gradle-tooling-api.jar from IDEA 2020

Because gradle-6.1.jar is now bundled into idea-gradle plugin
This commit is contained in:
Natalia Selezneva
2020-03-04 14:21:50 +03:00
parent 33368590e4
commit 04c924a119
10 changed files with 31 additions and 18 deletions
+6 -2
View File
@@ -21,7 +21,9 @@ dependencies {
testRuntimeOnly(project(":nj2k:nj2k-services"))
testRuntimeOnly(project(":kotlin-reflect"))
testRuntimeOnly(project(":idea:kotlin-gradle-tooling"))
testRuntimeOnly(project(":idea:idea-gradle-tooling-api"))
Platform[193].orLower {
testRuntimeOnly(project(":idea:idea-gradle-tooling-api"))
}
testRuntimeOnly(project(":kotlin-gradle-statistics"))
testImplementation(intellijPluginDep("gradle"))
@@ -46,7 +48,9 @@ dependencies {
testCompileOnly(intellijDep())
testCompileOnly(project(":nj2k"))
testCompileOnly(project(":idea:idea-gradle-tooling-api"))
Platform[193].orLower {
testCompileOnly(project(":idea:idea-gradle-tooling-api"))
}
testCompileOnly(intellijDep()) { includeJars("slf4j-api-1.7.25") }
}