blob: 69d59d001020548740fd178b681eec74b576ff7a [file]
description = "Kotlin Power-Assert Compiler Plugin (CLI)"
plugins {
kotlin("jvm")
}
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()