Let's contextualize the problem:
I have a project that consumes some Web Services, in this project I have separate source folders according to the standard suggested by Maven ex: (main / java test / java), the classes generated based on the Web Services WSDL I ended up separating in main / wsdl so it was possible to exclude them from the test coverage (Eclemma), it was the only way I found to do that.
When I run the Maven install command via Eclipse everything works fine, but running the same command via the command line throws an exception saying that the packages contained in my generated classes do not exist (if lost). >
Has anyone ever had this and knows how to solve it?