XSD and WSDL in different directories
At my work used jaxws-maven-plugin for code generation. I have two projects are "common" and'' client ". Structure roughly as follows: app/ common/ resource/ some.xsd client/ resource/ some.wsdl How can I generate classes from wsdl in the project "client", using the xsd from the project "common"? pom.xml: <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxws-maven-plugin</artifactId> <executions> <execution> <goals> <goal>wsimport</goal> </goals> <configuration> <verbose>true</verbose> <bindingFiles> <bindingFile>${project.parent.basedir}/common/resource/some.xsd</bindingFile> <