plugins { | |
kotlin("jvm") | |
id("jps-compatible") | |
} | |
dependencies { | |
api(project(":compiler:util")) | |
api(project(":compiler:frontend")) | |
compileOnly(intellijCore()) | |
} | |
sourceSets { | |
"main" { projectDefault() } | |
"test" {} | |
} | |
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach { | |
kotlinOptions.freeCompilerArgs += "-Xjvm-default=all-compatibility" | |
} | |
optInToExperimentalCompilerApi() |