summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/binding-ws-axis2/pom.xml
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-20 16:01:32 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-20 16:01:32 +0000
commit61a0308df96e47362f6e40776eb37e9bfc03c81f (patch)
treefc72402f492a14f76cd6014da1633cdb8ccaa526 /java/sca/modules/binding-ws-axis2/pom.xml
parentf01e20a46fb0433b1e0e20ccc5f2cbd45dedf95c (diff)
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
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@687378 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/binding-ws-axis2/pom.xml')
-rw-r--r--java/sca/modules/binding-ws-axis2/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/java/sca/modules/binding-ws-axis2/pom.xml b/java/sca/modules/binding-ws-axis2/pom.xml
index 42c2140511..af84fe2d2c 100644
--- a/java/sca/modules/binding-ws-axis2/pom.xml
+++ b/java/sca/modules/binding-ws-axis2/pom.xml
@@ -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>