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:
@@ -18,7 +18,7 @@ val clean by tasks.getting {
|
||||
}
|
||||
}
|
||||
|
||||
val serialize by tasks.creating(UtilityJavaExec::class) {
|
||||
val serialize by tasks.creating(NoDebugJavaExec::class) {
|
||||
val outDir = builtinsSerialized
|
||||
val inDirs = arrayOf(builtinsSrc, builtinsNative)
|
||||
inDirs.forEach { inputs.dir(it) }
|
||||
|
||||
Reference in New Issue
Block a user