Update to 192.5118.30
This commit is contained in:
@@ -23,7 +23,13 @@ dependencies {
|
||||
testCompile(project(":compiler:frontend.java"))
|
||||
testCompile(projectTests(":jps-plugin"))
|
||||
testCompile(commonDep("junit:junit"))
|
||||
testCompile(intellijDep()) { includeJars("openapi", "util", "idea", "idea_rt", "groovy-all", "jps-builders", rootProject = rootProject) }
|
||||
testCompile(intellijDep()) { includeJars("openapi", "util", "idea", "idea_rt", "groovy-all", rootProject = rootProject) }
|
||||
Platform[191].orLower {
|
||||
testCompile(intellijDep()) { includeJars("jps-builders") }
|
||||
}
|
||||
Platform[192].orHigher {
|
||||
testCompile(intellijPluginDep("java")) { includeJars("jps-builders") }
|
||||
}
|
||||
testCompile(jpsStandalone()) { includeJars("jps-model") }
|
||||
testCompile(jpsBuildTest())
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ dependencies {
|
||||
compile(project(":js:js.serializer"))
|
||||
compile(project(":js:js.dce"))
|
||||
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core", rootProject = rootProject) }
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
testCompile(project(":compiler:backend"))
|
||||
testCompile(project(":compiler:cli"))
|
||||
|
||||
@@ -32,6 +32,10 @@ dependencies {
|
||||
testCompileOnly(project(":kotlin-reflect-api"))
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -10,7 +10,15 @@ plugins {
|
||||
|
||||
dependencies {
|
||||
testCompileOnly(intellijDep()) {
|
||||
includeJars("openapi", "java-api", "extensions", "idea", "idea_rt", "util", "asm-all", rootProject = rootProject)
|
||||
includeJars("openapi", "extensions", "idea", "idea_rt", "util", "asm-all", rootProject = rootProject)
|
||||
}
|
||||
|
||||
Platform[191].orLower {
|
||||
testCompileOnly(intellijDep()) { includeJars("java-api") }
|
||||
}
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api") }
|
||||
}
|
||||
|
||||
testRuntime(intellijDep())
|
||||
|
||||
@@ -25,6 +25,11 @@ dependencies {
|
||||
|
||||
testCompileOnly(project(":kotlin-reflect-api"))
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -12,7 +12,15 @@ dependencies {
|
||||
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
|
||||
|
||||
testCompileOnly(intellijDep()) { includeJars("openapi", "java-api", "idea", "idea_rt", "util", "asm-all", "extensions", rootProject = rootProject) }
|
||||
testCompileOnly(intellijDep()) { includeJars("openapi", "idea", "idea_rt", "util", "asm-all", "extensions", rootProject = rootProject) }
|
||||
|
||||
Platform[191].orLower {
|
||||
testCompileOnly(intellijDep()) { includeJars("java-api") }
|
||||
}
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api") }
|
||||
}
|
||||
|
||||
testRuntime(intellijDep())
|
||||
|
||||
|
||||
@@ -10,6 +10,11 @@ dependencies {
|
||||
compile(project(":compiler:frontend"))
|
||||
compile(project(":compiler:frontend.java"))
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijDep()) { includeJars("platform-core-ui", "platform-util-ui") }
|
||||
}
|
||||
|
||||
compileOnly(intellijDep()) { includeJars("asm-all", "trove4j", "guava", rootProject = rootProject) }
|
||||
}
|
||||
|
||||
|
||||
@@ -61,6 +61,10 @@ dependencies {
|
||||
)
|
||||
isTransitive = false
|
||||
}
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompile(intellijDep()) { includeJars("platform-util-ui") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -13,6 +13,10 @@ dependencies {
|
||||
testCompile(projectTests(":generators:test-generator"))
|
||||
|
||||
testRuntimeOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
Platform[192].orHigher {
|
||||
testRuntimeOnly(intellijDep()) { includeJars("platform-concurrency") }
|
||||
testRuntimeOnly(intellijPluginDep("jps-standalone")) { includeJars("jps-model") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
versions.intellijSdk=192.4205.45-EAP-SNAPSHOT
|
||||
versions.intellijSdk=192.5118.30-EAP-SNAPSHOT
|
||||
versions.androidBuildTools=r23.0.1
|
||||
versions.idea.NodeJS=181.3494.12
|
||||
versions.jar.asm-all=7.0.1
|
||||
versions.jar.guava=25.1-jre
|
||||
versions.jar.groovy-all=2.4.15
|
||||
versions.jar.groovy-all=2.4.17
|
||||
versions.jar.lombok-ast=0.2.3
|
||||
versions.jar.swingx-core=1.6.2-2
|
||||
versions.jar.kxml2=2.3.0
|
||||
|
||||
@@ -99,6 +99,13 @@ dependencies {
|
||||
compileOnly(project(":kotlin-daemon-client"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl") }
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl") }
|
||||
testRuntime(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testRuntime(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
compileOnly(commonDep("org.jetbrains", "markdown"))
|
||||
compileOnly(commonDep("com.google.code.findbugs", "jsr305"))
|
||||
compileOnly(intellijPluginDep("IntelliLang"))
|
||||
|
||||
@@ -21,6 +21,11 @@ dependencies {
|
||||
compile(project(":idea:idea-core"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
compileOnly(intellijPluginDep("gradle"))
|
||||
}
|
||||
|
||||
|
||||
@@ -8,6 +8,9 @@ dependencies {
|
||||
compile(project(":compiler:util"))
|
||||
compile(project(":compiler:frontend"))
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -22,6 +22,16 @@ dependencies {
|
||||
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-jdk8")) { isTransitive = false }
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) {
|
||||
includeJars(
|
||||
"java-api", "java-impl",
|
||||
"external-system-rt", "external-system-impl"
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
compileOnly(intellijPluginDep("gradle"))
|
||||
}
|
||||
|
||||
|
||||
@@ -32,6 +32,10 @@ dependencies {
|
||||
testCompileOnly(intellijPluginDep("Groovy"))
|
||||
testCompileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("external-system-rt", "external-system-impl") }
|
||||
}
|
||||
|
||||
testRuntime(project(":kotlin-reflect"))
|
||||
testRuntime(project(":idea:idea-jvm"))
|
||||
testRuntime(project(":idea:idea-android"))
|
||||
|
||||
@@ -22,6 +22,18 @@ dependencies {
|
||||
compileOnly(intellijPluginDep("junit"))
|
||||
compileOnly(intellijPluginDep("testng"))
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) {
|
||||
includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl")
|
||||
}
|
||||
|
||||
testCompileOnly(intellijPluginDep("java")) {
|
||||
includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl")
|
||||
}
|
||||
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
testCompile(projectTests(":idea"))
|
||||
testCompile(projectTests(":idea:idea-test-framework"))
|
||||
|
||||
|
||||
@@ -8,6 +8,10 @@ dependencies {
|
||||
compile(project(":idea:idea-core"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -12,6 +12,12 @@ dependencies {
|
||||
compileOnly(intellijDep())
|
||||
compileOnly(commonDep("com.google.code.findbugs", "jsr305"))
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) {
|
||||
includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl")
|
||||
}
|
||||
}
|
||||
|
||||
compileOnly(intellijPluginDep("junit"))
|
||||
compileOnly(intellijPluginDep("testng"))
|
||||
compileOnly(intellijPluginDep("coverage"))
|
||||
|
||||
@@ -19,6 +19,12 @@ dependencies {
|
||||
compile(project(":idea:idea-jps-common"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl") }
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl") }
|
||||
testRuntime(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
||||
|
||||
testCompile(projectTests(":idea"))
|
||||
|
||||
@@ -9,6 +9,9 @@ dependencies {
|
||||
compile(project(":idea:idea-jvm"))
|
||||
compile(project(":compiler:frontend"))
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
compile(project(":kotlin-native:kotlin-native-library-reader"))
|
||||
|
||||
testCompileOnly(intellijDep())
|
||||
|
||||
@@ -15,6 +15,9 @@ dependencies {
|
||||
testCompileOnly(project(":kotlin-reflect-api"))
|
||||
testCompile(commonDep("junit:junit"))
|
||||
testCompileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl", "external-system-rt", "external-system-impl") }
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
@@ -13,6 +13,11 @@ dependencies {
|
||||
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
compileOnly(intellijPluginDep("stream-debugger"))
|
||||
|
||||
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
||||
|
||||
@@ -10,6 +10,9 @@ dependencies {
|
||||
compile(project(":idea:idea-j2k"))
|
||||
compile(project(":idea:jvm-debugger:jvm-debugger-util"))
|
||||
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
|
||||
@@ -9,6 +9,10 @@ dependencies {
|
||||
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
}
|
||||
|
||||
compileOnly(intellijPluginDep("stream-debugger"))
|
||||
|
||||
testCompile(project(":kotlin-test:kotlin-test-junit"))
|
||||
|
||||
@@ -12,6 +12,10 @@ dependencies {
|
||||
compile(project(":idea:jvm-debugger:eval4j"))
|
||||
|
||||
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
compileOnly(intellijDep())
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
|
||||
<version>@snapshot@</version>
|
||||
<vendor url="http://www.jetbrains.com">JetBrains</vendor>
|
||||
|
||||
<idea-version since-build="192.1" until-build="193.*"/>
|
||||
<idea-version since-build="192.5118.30" until-build="193.*"/>
|
||||
|
||||
<depends>com.intellij.modules.platform</depends>
|
||||
|
||||
|
||||
@@ -24,6 +24,11 @@ dependencies {
|
||||
|
||||
testCompileOnly(intellijDep())
|
||||
|
||||
Platform[192].orHigher {
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
testCompile(project(":idea:idea-native")) { isTransitive = false }
|
||||
testCompile(project(":idea:idea-gradle-native")) { isTransitive = false }
|
||||
|
||||
|
||||
@@ -25,7 +25,17 @@ dependencies {
|
||||
includeJars("jdom", "trove4j", "jps-model", "openapi", "util", "asm-all", rootProject = rootProject)
|
||||
}
|
||||
}
|
||||
compileOnly(jpsStandalone()) { includeJars("jps-builders", "jps-builders-6") }
|
||||
|
||||
Platform[191].orLower {
|
||||
testCompileOnly(jpsStandalone()) { includeJars("jps-builders", "jps-builders-6") }
|
||||
compileOnly(jpsStandalone()) { includeJars("jps-builders", "jps-builders-6") }
|
||||
}
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("jps-builders", "jps-builders-6") }
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("jps-builders", "jps-builders-6") }
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
testCompileOnly(project(":kotlin-reflect-api"))
|
||||
testCompile(project(":compiler:incremental-compilation-impl"))
|
||||
testCompile(projectTests(":compiler:tests-common"))
|
||||
@@ -33,7 +43,7 @@ dependencies {
|
||||
testCompile(commonDep("junit:junit"))
|
||||
testCompile(project(":kotlin-test:kotlin-test-jvm"))
|
||||
testCompile(projectTests(":kotlin-build-common"))
|
||||
testCompileOnly(jpsStandalone()) { includeJars("jps-builders", "jps-builders-6") }
|
||||
|
||||
Ide.IJ {
|
||||
testCompile(intellijDep("devkit"))
|
||||
}
|
||||
|
||||
+11
-1
@@ -17,7 +17,17 @@ dependencies {
|
||||
compile(project(":compiler:util"))
|
||||
|
||||
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "guava", rootProject = rootProject) }
|
||||
compileOnly(intellijDep()) { includeJars("platform-api", "java-impl", "platform-impl", rootProject = rootProject) }
|
||||
compileOnly(intellijDep()) { includeJars("platform-api", "platform-impl", rootProject = rootProject) }
|
||||
|
||||
Platform[191].orLower {
|
||||
compileOnly(intellijDep()) { includeJars("java-impl") }
|
||||
}
|
||||
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
testCompileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
testRuntime(intellijPluginDep("java"))
|
||||
}
|
||||
|
||||
testCompile(project(":idea"))
|
||||
testCompile(projectTests(":j2k"))
|
||||
|
||||
@@ -44,6 +44,10 @@ dependencies {
|
||||
compileOnly(project(":kotlin-daemon-client"))
|
||||
|
||||
compileOnly(intellijDep())
|
||||
Platform[192].orHigher {
|
||||
compileOnly(intellijPluginDep("java")) { includeJars("java-api", "java-impl") }
|
||||
}
|
||||
|
||||
compileOnly(commonDep("com.google.code.findbugs", "jsr305"))
|
||||
compileOnly(intellijPluginDep("IntelliLang"))
|
||||
compileOnly(intellijPluginDep("copyright"))
|
||||
|
||||
@@ -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 }
|
||||
|
||||
@@ -77,7 +77,7 @@ dependencies {
|
||||
fatJarContents(intellijDep()) { includeJars("lz4-1.3.0") }
|
||||
}
|
||||
|
||||
if (Platform.P183.orHigher()) {
|
||||
if (Platform.P183.orHigher() && Platform.P191.orLower()) {
|
||||
fatJarContents(intellijCoreDep()) { includeJars("java-compatibility-1.0.1") }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user