[
https://issues.apache.org/jira/browse/CXF-2240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Freeman Fang resolved CXF-2240.
-------------------------------
Resolution: Fixed
commit fix
http://svn.apache.org/viewvc?rev=778719&view=rev for trunk
http://svn.apache.org/viewvc?rev=778950&view=rev for 2.1.x branch
http://svn.apache.org/viewvc?rev=778961&view=rev for 2.0.x branch
> add ibmjdk profile for cxf-codegen-plugin
> -----------------------------------------
>
> Key: CXF-2240
> URL: https://issues.apache.org/jira/browse/CXF-2240
> Project: CXF
> Issue Type: Improvement
> Affects Versions: 2.0.11, 2.1.5, 2.2.1
> Reporter: Freeman Fang
> Assignee: Freeman Fang
>
> cxf-codegen-plugin need xercesImp dependency with IBM JDK, so if other
> project use cxf-code-plugin with IBM JDK, need add IBM JDK pofile to change
> default cxf-codegen-plugin dependency, like what already done in
> https://issues.apache.org/activemq/browse/CAMEL-939
> https://issues.apache.org/activemq/browse/SMX4-149
> We can add ibm jdk profile in cxf-codegen-plugin pom to avoid this
> like add
> + <profiles>
> + <profile>
> + <id>ibmjdk</id>
> + <activation>
> + <property>
> + <name>java.vendor</name>
> + <value>IBM Corporation</value>
> + </property>
> + </activation>
> + <dependencies>
> + <dependency>
> + <groupId>xerces</groupId>
> + <artifactId>xercesImpl</artifactId>
> + <version>2.8.1</version>
> + </dependency>
> + </dependencies>
> + </profile>
> + </profiles>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.