Created
November 24, 2015 00:57
-
-
Save saburto/5e90ed4f4afecf190fde to your computer and use it in GitHub Desktop.
wsimport class name collision. When this error happen "A class/interface with the same name "" is already in use. Use a class customization to resolve this conflict"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- usage of jax-ws maven plugin --> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>jaxws-maven-plugin</artifactId> | |
<version>1.12</version> | |
<executions> | |
<execution> | |
<id>wsimport-from-jdk</id> | |
<goals> | |
<goal>wsimport</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<!-- using wsdl from an url --> | |
<wsdlUrls> | |
<wsdlUrl> | |
http:// | |
</wsdlUrl> | |
</wsdlUrls> | |
<keep>true</keep> | |
<verbose>true</verbose> | |
<xjcArgs> | |
<xjcArg>-XautoNameResolution</xjcArg> | |
</xjcArgs> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment