Nick Kleban
02/16/2024, 2:57 PMtasks.withType<Detekt> { dependsOn(":my-rules:assemble") }
I’ve added similar configuration to all my modules, but when I change my custom rule and run detekt
old version of the rule instead of new one is launched.
Only project clean + detekt helps me.
Configuration and build cache are enabled.
How I can ensure that the newest version of rules is launched.Brais Gabin
02/16/2024, 3:03 PMNick Kleban
02/16/2024, 4:11 PMdetekt.use.worker.api=true
in gradle.properties
should fix my issue?Brais Gabin
02/16/2024, 5:53 PM