Remove 181 branch from build scripts

#KT-33536 Fixed
This commit is contained in:
Nikolay Krasko
2019-08-28 14:12:11 +03:00
parent 0ae9240e5f
commit 8ae4293a0f
6 changed files with 6 additions and 23 deletions
@@ -57,9 +57,7 @@ dependencies {
testRuntime(intellijPluginDep("maven"))
}
testRuntime(intellijPluginDep("android"))
if (Platform[181].orHigher()) {
testRuntime(intellijPluginDep("smali"))
}
testRuntime(intellijPluginDep("smali"))
}
sourceSets {
@@ -11,9 +11,7 @@ dependencies {
testRuntime(intellijDep())
testCompileOnly(intellijDep()) { includeJars("idea", "idea_rt", "openapi") }
Platform[181].orHigher {
testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") }
}
testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") }
Platform[192].orHigher {
testRuntime(intellijPluginDep("java"))
@@ -22,9 +22,7 @@ dependencies {
compile(project(":idea:idea-jvm"))
compileOnly(intellijDep()) { includeJars("openapi", "extensions", "util") }
Platform[181].orHigher {
compileOnly(intellijDep()) { includeJars("platform-api") }
}
compileOnly(intellijDep()) { includeJars("platform-api") }
}
sourceSets {