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:
Vyacheslav Gerasimov
2018-12-04 18:59:39 +03:00
parent f2e27da5bb
commit 508fe28781
5 changed files with 22 additions and 85 deletions
+1 -1
View File
@@ -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"