blob: eb08eb94ee00117be32213f4bbfb857e39ee53d9 [file]
description = "Kotlin Power-Assert Compiler Plugin (CLI)"
plugins {
kotlin("jvm")
}
dependencies {
compileOnly(project(":compiler:plugin-api"))
compileOnly(project(":compiler:fir:entrypoint"))
compileOnly(project(":compiler:ir.backend.common"))
implementation(project(":kotlin-power-assert-compiler-plugin.backend"))
implementation(project(":kotlin-power-assert-compiler-plugin.frontend"))
}
optInToExperimentalCompilerApi()
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar()
sourcesJar()
javadocJar()