[Commonizer] Allow debugging through "runCommonizer" Gradle task

This commit is contained in:
Dmitriy Dolovov
2020-10-13 12:18:10 +03:00
parent f49f5cb3d5
commit 3d8b614778
+1 -1
View File
@@ -31,7 +31,7 @@ dependencies {
testImplementation(projectTests(":compiler:tests-common"))
}
val runCommonizer by tasks.registering(NoDebugJavaExec::class) {
val runCommonizer by tasks.registering(JavaExec::class) {
classpath(configurations.compileOnly, sourceSets.main.get().runtimeClasspath)
main = "org.jetbrains.kotlin.descriptors.commonizer.cli.CommonizerCLI"
}