Remove 202 platform support in build scripts

This commit is contained in:
Nikolay Krasko
2021-07-21 20:36:49 +03:00
committed by TeamCityServer
parent ec99585eb9
commit 83023c2073
10 changed files with 14 additions and 63 deletions
+4 -11
View File
@@ -20,18 +20,11 @@ fun Project.configureJavaInstrumentation() {
if (plugins.hasPlugin("org.gradle.java")) {
val javaInstrumentator by configurations.creating
dependencies {
Platform[202] {
javaInstrumentator(intellijDep()) {
includeJars("javac2", "jdom", "asm-all", rootProject = rootProject)
}
javaInstrumentator(intellijDep()) {
includeJars("jdom", "asm-all", rootProject = rootProject)
}
Platform[203].orHigher {
javaInstrumentator(intellijDep()) {
includeJars("jdom", "asm-all", rootProject = rootProject)
}
javaInstrumentator(intellijPluginDep("java")) {
includeJars("javac2", rootProject = rootProject)
}
javaInstrumentator(intellijPluginDep("java")) {
includeJars("javac2", rootProject = rootProject)
}
}
for (sourceSet in listOf(mainSourceSet, testSourceSet)) {