description = "Kotlin NoArg Compiler Plugin (Backend)" plugins { kotlin("jvm") id("jps-compatible") } dependencies { compileOnly(project(":compiler:backend")) compileOnly(project(":compiler:ir.backend.common")) compileOnly(intellijCore()) compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all")) implementation(kotlinStdlib()) } optInToUnsafeDuringIrConstructionAPI() sourceSets { "main" { projectDefault() } "test" { none() } } runtimeJar() sourcesJar() javadocJar()