Open
Description
Version 7.0.5, Gradle 7.4
Currently, the default target of the preprocess
task is "build/java-comment-preprocessor/preprocess". This is inside the build folder, which gets deleted entirely when running the clean
task. However, if I run preprocess
again after a clean, I get > Task :core:preprocess UP-TO-DATE
, after which, the preprocess folder won't be regenerated anymore.
Currently, my solution is to enable clearTarget
and move the target outside of the build folder so it survives a clean
and clears itself. This is not ideal, however.