Work around maven dependency problems Disable the transitive dependency from axis2-webapp to xercesImpl and from all rampart artifacts to opensaml. This fixes reproducible problem where maven tries to download artifacts from the wrong repositories.
Signed-off-by: Prasanna Santhanam <[email protected]> Signed-off-by: Rohit Yadav <[email protected]> Reviewed-by: Likitha Shetty <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/42f3804f Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/42f3804f Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/42f3804f Branch: refs/heads/ui-plugins Commit: 42f3804fbdde7bfe4f3676ef0c18a54dfe95354c Parents: 287d7f4 Author: Noa Resare <[email protected]> Authored: Thu Jan 3 15:48:06 2013 +0000 Committer: Prasanna Santhanam <[email protected]> Committed: Thu Jan 3 22:13:32 2013 -0800 ---------------------------------------------------------------------- awsapi/pom.xml | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/42f3804f/awsapi/pom.xml ---------------------------------------------------------------------- diff --git a/awsapi/pom.xml b/awsapi/pom.xml index 2e42655..06c9d7e 100644 --- a/awsapi/pom.xml +++ b/awsapi/pom.xml @@ -47,6 +47,12 @@ <artifactId>axis2-webapp</artifactId> <type>war</type> <version>${cs.axis2.version}</version> + <exclusions> + <exclusion> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> @@ -123,6 +129,10 @@ <groupId>org.apache.xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -139,6 +149,10 @@ <groupId>org.apache.xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -151,6 +165,10 @@ <groupId>org.apache.xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -163,6 +181,10 @@ <groupId>org.apache.xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -175,6 +197,10 @@ <groupId>org.apache.xalan</groupId> <artifactId>xalan</artifactId> </exclusion> + <exclusion> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
