| import org.jetbrains.kotlin.gradle.dsl.KotlinVersion |
| import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask |
| |
| plugins { |
| kotlin("jvm") |
| id("jps-compatible") |
| } |
| |
| dependencies { |
| implementation(kotlinStdlib("jdk8")) |
| @Suppress("UNCHECKED_CAST") |
| rootProject.extra["kotlinJpsPluginEmbeddedDependencies"] |
| .let { it as List<String> } |
| .forEach { implementation(project(it)) } |
| |
| @Suppress("UNCHECKED_CAST") |
| rootProject.extra["kotlinJpsPluginMavenDependencies"] |
| .let { it as List<String> } |
| .forEach { implementation(project(it)) } |
| |
| @Suppress("UNCHECKED_CAST") |
| rootProject.extra["kotlinJpsPluginMavenDependenciesNonTransitiveLibs"] |
| .let { it as List<String> } |
| .forEach { implementation(it) { isTransitive = false } } |
| |
| compileOnly(intellijUtilRt()) |
| compileOnly(intellijPlatformUtil()) |
| compileOnly(jpsModel()) |
| compileOnly(jpsModelImpl()) |
| compileOnly(jpsModelSerialization()) |
| compileOnly(intellijJDom()) |
| testCompileOnly(intellijJDom()) |
| |
| testImplementation(project(":compiler:cli-common")) |
| testImplementation(jpsModelSerialization()) |
| testImplementation(libs.junit4) |
| testImplementation(kotlin("test-junit")) |
| } |
| |
| sourceSets { |
| "main" { |
| projectDefault() |
| generatedDir() |
| } |
| "test" { projectDefault() } |
| } |
| |
| runtimeJar() |
| |
| tasks.withType<KotlinCompilationTask<*>>().configureEach { |
| compilerOptions.apiVersion.value(KotlinVersion.KOTLIN_1_8).finalizeValueOnRead() |
| compilerOptions.languageVersion.value(KotlinVersion.KOTLIN_1_8).finalizeValueOnRead() |
| } |