Maven JAXB2 XJC plugin: M2E plugin execution not covered
问题 I am using using the jaxb2 xjc plugin for generating java files from a XSD . Therefore I used to configure my pom.xml as follows: <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>1.3</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>xjc</goal> </goals> </execution> </executions> <configuration> <packageName>com.mypackage.model</packageName> <schemaDirectory>${basedir}/src/main/resources/XSD<