rusefillc 2023-07-14 16:28:43 -04:00
parent bbf31dfe6a
commit 6fd30fcd96
1 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,13 @@ allprojects {
testImplementation global_libs.junit
}
}
tasks.withType(JavaExec).configureEach {
if (name.endsWith("main()")) {
// https://github.com/gradle/gradle/issues/21364
notCompatibleWithConfigurationCache("JavaExec created by IntelliJ")
}
}
}
tasks.named('wrapper') {