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