You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2008/11/10 08:02:32 UTC

svn commit: r712618 - /servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml

Author: ffang
Date: Sun Nov  9 23:02:32 2008
New Revision: 712618

URL: http://svn.apache.org/viewvc?rev=712618&view=rev
Log:
[SMX4-149]ServiceMix Example CXF OSGi build error on AIX; DTDDVFactoryImpl does not extend from DTDDVFactory.

Modified:
    servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml

Modified: servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml?rev=712618&r1=712617&r2=712618&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml (original)
+++ servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml Sun Nov  9 23:02:32 2008
@@ -249,6 +249,23 @@
                             <argLine>-Djava.security.properties==${basedir}/src/test/resources/ibm.jdk15.security</argLine>
                         </configuration>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.cxf</groupId>
+                        <artifactId>cxf-codegen-plugin</artifactId>
+                        <version>${cxf.version}</version>
+                            <dependencies>
+                            <!-- needed to add this to get around the following error on IBM's JDK
+                                 org.apache.xerces.impl.dv.DVFactoryException: DTD factory class
+                                 org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl does not extend
+                                 from DTDDVFactory.
+                            -->
+                                <dependency>
+                                    <groupId>xerces</groupId>
+                                    <artifactId>xercesImpl</artifactId>
+                                    <version>2.8.1</version>
+                                </dependency>
+                            </dependencies>
+                    </plugin>
                 </plugins>
             </build>
             </profile>