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
This commit is contained in:
antelder 2008-08-20 16:01:32 +00:00
parent f01e20a46f
commit 61a0308df9

View file

@ -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>