Vlastimil Brecka
10/24/2025, 12:12 AMsubprojects {
tasks.register("foo") { … }
}
ELI5 why does this break configuration avoidance? It's using register which makes task instantiation lazy.. so what's the problem?
Docs basically just say its bad because it injects code not visible at project build file (sure), and it introduces comfiguration time coupling (not sure what does it mean)
How exactly am I tanking perf by this?Chris Lee
10/24/2025, 12:27 AMVampire
10/24/2025, 12:31 AMVlastimil Brecka
10/24/2025, 2:35 AMVampire
10/24/2025, 6:51 AMVlastimil Brecka
10/24/2025, 9:10 PM