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.2.1, 2.1.5, 2.0.11
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.