I'm working on adapting some source generation code into the maven lifecycle. I've written a plugin that is generating the sources (albeit at random places) and bound it to the generate sources phase. I've read in a couple places that the standard location is target/generated-sources/<plugin-id>. However, the compiler plugin doesn't check this directory. I could always just ensure these directories are explicitly added for compilation, but I wanted to check if there was any convention (besides generating into src/main/java) that would allow the compilation to occur automatically.
Thanks
