Author: antelder
Date: Wed Aug 20 09:01:32 2008
New Revision: 687378

URL: http://svn.apache.org/viewvc?rev=687378&view=rev
Log:
Running ws in websphere requires xerces/xalan/xml-apis so add them as 
dependencies even though they're not needed in other environments they don't 
break those other environments when included

Modified:
    tuscany/java/sca/modules/binding-ws-axis2/pom.xml

Modified: tuscany/java/sca/modules/binding-ws-axis2/pom.xml
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/modules/binding-ws-axis2/pom.xml?rev=687378&r1=687377&r2=687378&view=diff
==============================================================================
--- tuscany/java/sca/modules/binding-ws-axis2/pom.xml (original)
+++ tuscany/java/sca/modules/binding-ws-axis2/pom.xml Wed Aug 20 09:01:32 2008
@@ -539,6 +539,23 @@
             <version>2.5</version> <!-- to keep compatible with older servlet 
containers --> 
             <scope>provided</scope>
         </dependency>                
+
+<!-- xerces, xalan, and xml-apis are required for running in websphere -->
+        <dependency>
+            <groupId>xerces</groupId>
+            <artifactId>xercesImpl</artifactId>
+            <version>2.8.1</version>
+        </dependency>  
+        <dependency>
+            <groupId>xalan</groupId>
+            <artifactId>xalan</artifactId>
+            <version>2.7.0</version>
+        </dependency>  
+        <dependency>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
+            <version>1.3.03</version>
+        </dependency>  
     </dependencies>
 
 


Reply via email to