Well! It was pointing to old version of xerces. Thanks for that!
now when I run the maven build.... I could able to generate the stubs
(*.java & *.class)
what change in this build will make me to exclude *.java? (ofcourse it
requires to generate the .class files... I am looking for some thing like
delete the *.java after *.class get generated).
<build>
> <plugins>
> <plugin>
> <groupId>org.apache.cxf</groupId>
> <artifactId>cxf-codegen-plugin</artifactId>
> <version>2.1</version>
> <executions>
> <execution>
> <id>generate-sources</id>
> <phase>generate-sources</phase>
> <goals>
> <goal>wsdl2java</goal>
> </goals>
> </execution>
> </executions>
> <configuration>
> <sourceRoot>
> ${basedir}/target/generated/src/main/java
> </sourceRoot>
> <wsdlOptions>
> <wsdlOption>
> <wsdl>
> ${basedir}/wsdl/ICAMS.wsdl
> </wsdl>
> <packagenames>
> <packagename>
> some.package.webservice.v10
> </packagename>
> </packagenames>
> </wsdlOption>
> </wsdlOptions>
> </configuration>
> </plugin>
> </plugins>
> </build>
>
TIA!
--
View this message in context:
http://www.nabble.com/how-to-delete-*.java-after-generating-stubs-using-wsdl2java-tp19317921p19317921.html
Sent from the cxf-user mailing list archive at Nabble.com.