Hi all ,
Does anyone have any idea why this is happening ?
If we removed the following dependency (marked with ====)from metacode
module,
buid rt-management always failed.
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<version>${project.version}</version>
<executions>
<execution>
...
</configuration>
<goals>
<goal>xsdtojava</goal>
</goals>
</execution>
</executions>
<dependencies>
=========================
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools2-xjc-dv</artifactId>
<version>${project.version}</version>
</dependency>
=========================
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
rt-management always complain unrecognized parameter -Xdv. But I have set
the
the cxf-tools-xjc-dv dependency for xsdtojava plugin . Is this an issue in
our jaxb plugin ?
Another question is : Why do we need to implement our own jaxb plugin
instead of using Sun's jaxb plugin ?
Thanks
Jim