336ea28735
This commit prevents language version increase due to bootstrapping problems. Compiler version X attempts to build the project with the current version X+1 -> warning about progressive mode cannot be enabled -> error due to -Werror -> build failure.
44 lines
1.1 KiB
Kotlin
44 lines
1.1 KiB
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:cli-common"))
|
|
api(project(":compiler:resolution.common"))
|
|
api(project(":compiler:frontend.java"))
|
|
api(project(":compiler:frontend:cfg"))
|
|
api(project(":compiler:ir.backend.common"))
|
|
api(project(":compiler:backend.jvm"))
|
|
api(project(":compiler:light-classes"))
|
|
api(project(":compiler:javac-wrapper"))
|
|
api(project(":compiler:ir.serialization.jvm"))
|
|
api(project(":js:js.translator"))
|
|
api(project(":native:frontend.native"))
|
|
api(project(":wasm:wasm.frontend"))
|
|
api(project(":kotlin-util-klib"))
|
|
api(project(":kotlin-util-klib-metadata"))
|
|
|
|
compileOnly(toolsJarApi())
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" { none() }
|
|
}
|
|
|
|
allprojects {
|
|
optInToExperimentalCompilerApi()
|
|
}
|
|
|
|
testsJar {}
|
|
|
|
projectTest {
|
|
workingDir = rootDir
|
|
}
|