-
Can Micronaut Groovy projects take advantage of incremental compilation? I've built this sample multiproject made of a Groovy subproject and a Java subproject: https://github.com/tcrespog/mn-incremental. As far as I can see, compilation avoidance works: a change (ABI-compatible) in the Java subproject does not trigger a recompilation of the Groovy project. However, I'd say incremental compilation is not working: the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@melix Do you know the answer to the question above? |
Beta Was this translation helpful? Give feedback.
-
Adding
So we have our answer: incremental compilation doesn't work with Groovy in the case of Micronaut, because of annotation processing. |
Beta Was this translation helpful? Give feedback.
Adding
-i
to the build gives us the following:So we have our answer: incremental compilation doesn't work with Groovy in the case of Micronaut, because of annotation processing.