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
+18 -14
View File
@@ -3,19 +3,23 @@ plugins {
id("jps-compatible")
}
dependencies {
compileOnly(intellijPluginDep("gradle"))
// BUNCH 193: this module is no longer needed since IDEA 2020.1
Platform[193].orLower {
dependencies {
compileOnly(intellijPluginDep("gradle"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
runtimeJar()
sourcesJar()
javadocJar()
apply(from = "$rootDir/gradle/kotlinPluginPublication.gradle.kts")
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
runtimeJar()
sourcesJar()
javadocJar()
apply(from = "$rootDir/gradle/kotlinPluginPublication.gradle.kts")