what are the implications, if any, of using `Proce...
# community-support
t
what are the implications, if any, of using
ProcessBuilder
(vs
ExecOperations
) during Gradle config? IIRC, configuration cache doesn't know anything about such a process and can't treat it as part of the cache key? Does it "break" CC in any way?
c
If you do it in a ValueSource its hidden from CC; otherwise it’s tracked by CC.
t
oh, interesting. So CC is now advanced enough it even tracks ProcessBuilder. I feel like my mental model is old and needs updating. Is there a reason I'd want to hide this from CC?