Build: Add NoDebugJavaExec to filter out debugger arguments added by Idea
Workaround for IDEA-200192: IDEA makes all JavaExec tasks not up-to-date and attaches debugger making our breakpoints trigger during irrelevant task execution
This commit is contained in:
@@ -31,7 +31,7 @@ dependencies {
|
||||
generatorClasspath(project("visitors-generator"))
|
||||
}
|
||||
|
||||
val generateVisitors by tasks.creating(UtilityJavaExec::class) {
|
||||
val generateVisitors by tasks.creating(NoDebugJavaExec::class) {
|
||||
val generationRoot = "$projectDir/src/org/jetbrains/kotlin/fir/"
|
||||
val output = "$projectDir/visitors"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user