diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-14 09:42:33 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-14 09:42:33 +0000 |
commit | fcddd63a5786ca1351de3d838d5559a8e232c2b9 (patch) | |
tree | e2a7fa9761ae9ffd2d860798d5126dfbf9c273c5 /sca-java-2.x/trunk/samples/getting-started | |
parent | 001462aa6110d381e351b910dda4072a1cb151d6 (diff) |
Correct dependencies following the move up to opensaml-2.4.1.jar,
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1146617 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml b/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml index 8bb8d1e161..d239f4a50c 100644 --- a/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml +++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml @@ -58,8 +58,27 @@ <artifactId>htmlunit</artifactId> <version>2.6</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + </exclusion> + </exclusions> </dependency> + <!-- replace HTMLUnit dependency with verstion that Tuscany is using --> + <dependency> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + <version>2.7.0</version> + <exclusions> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> <build> |