I'm using https://jax-ws-commons.java.net/jaxws-maven-plugin/ to generate sources from wsdl files. I'm doing multiple executions(for different wsdls) with different sourceDestDir. This is working as expected and it is generating sources in different directories.
But the plugin is also adding all of these sourceDestDir's to build sources and the maven-compiler-plugin tries to compile them automatically.
I want to prevent this from happening. i.e I want to remove the source directories added by jaxws-maven-plugin so that I can define what should be compiled and what shouldn't be. Is this possible?