Update to 192.5118.30
This commit is contained in:
@@ -15,6 +15,10 @@ dependencies {
|
||||
testCompileOnly(intellijDep()) { includeJars("platform-api", "platform-impl") }
|
||||
}
|
||||
|
||||
Platform[192].orHigher {
|
||||
testRuntime(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
|
||||
compile(project(":compiler:util"))
|
||||
compile(project(":compiler:cli"))
|
||||
compile(project(":compiler:backend"))
|
||||
|
||||
@@ -12,6 +12,11 @@ dependencies {
|
||||
compile(project(":idea:idea-core"))
|
||||
compile(project(":idea:idea-gradle"))
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) {
|
||||
includeJars("external-system-rt", "external-system-impl")
|
||||
}
|
||||
}
|
||||
compileOnly(intellijPluginDep("gradle"))
|
||||
compileOnly(intellijPluginDep("android"))
|
||||
}
|
||||
|
||||
@@ -22,6 +22,10 @@ dependencies {
|
||||
testCompile("org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.11.0")
|
||||
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
Platform[192].orHigher {
|
||||
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -18,6 +18,10 @@ dependencies {
|
||||
testCompile(commonDep("junit:junit"))
|
||||
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
Platform[192].orHigher {
|
||||
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -27,6 +27,10 @@ dependencies {
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
Platform[192].orHigher {
|
||||
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -13,6 +13,9 @@ dependencies {
|
||||
compile(project(":idea:idea-core"))
|
||||
compile(project(":plugins:uast-kotlin"))
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -14,9 +14,18 @@ dependencies {
|
||||
|
||||
// BEWARE: Uast should not depend on IDEA.
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", rootProject = rootProject) }
|
||||
compileOnly(intellijDep()) { includeJars("java-api", "java-impl") }
|
||||
|
||||
if (Platform.P191.orLower()) {
|
||||
compileOnly(intellijDep()) { includeJars("java-api", "java-impl") }
|
||||
testCompileOnly(intellijDep()) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
if (Platform.P192.orHigher()) {
|
||||
compileOnly(intellijDep()) { includeJars("platform-impl") }
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
testCompileOnly(intellijDep()) { includeJars("platform-impl") }
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
testRuntime(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
testCompile(project(":kotlin-test:kotlin-test-jvm"))
|
||||
@@ -27,10 +36,6 @@ dependencies {
|
||||
testCompile(projectTests(":idea:idea-test-framework"))
|
||||
|
||||
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testCompileOnly(intellijDep()) { includeJars("java-api", "java-impl") }
|
||||
if (Platform.P192.orHigher()) {
|
||||
testCompileOnly(intellijDep()) { includeJars("platform-impl") }
|
||||
}
|
||||
|
||||
testCompile(project(":idea:idea-native")) { isTransitive = false }
|
||||
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
|
||||
|
||||
Reference in New Issue
Block a user