description = "Kotlin AllOpen Compiler Plugin (CLI)" plugins { kotlin("jvm") id("jps-compatible") } dependencies { implementation(project(":kotlin-allopen-compiler-plugin.common")) implementation(project(":kotlin-allopen-compiler-plugin.k1")) implementation(project(":kotlin-allopen-compiler-plugin.k2")) compileOnly(project(":compiler:plugin-api")) compileOnly(project(":compiler:frontend")) compileOnly(project(":compiler:fir:cones")) compileOnly(project(":compiler:fir:tree")) compileOnly(project(":compiler:fir:resolve")) compileOnly(project(":compiler:fir:checkers")) compileOnly(project(":compiler:ir.backend.common")) compileOnly(project(":compiler:fir:entrypoint")) compileOnly(intellijCore()) runtimeOnly(kotlinStdlib()) } optInToExperimentalCompilerApi() sourceSets { "main" { projectDefault() } "test" { none() } } runtimeJar() sourcesJar() javadocJar()