Generating new sources via Maven plugin after compile phase
- by japher
I have a Maven project within which I need execute two code generation steps. One generates some Java types, then the second depends on those Java types to generate some more code. Is there a way to have both of these steps happening during my build?
At the moment my steps are:
execute first code generation plugin (during generate-sources)
add…