diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-21 07:25:36 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-21 07:25:36 +0000 |
commit | a7ad2f6b64171d59288ebd468363255a29d464a0 (patch) | |
tree | d8102f7c7f70ffffb82e18b8cefedc3c187cbd60 | |
parent | 949095c3ee577a6d22cf1af8f5ffe0e4006c7e31 (diff) |
TUSCANY-2595 - Workaround for equinox dependency range issues
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@706544 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | branches/sca-java-1.3.3/tools/eclipse/plugins/core/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/branches/sca-java-1.3.3/tools/eclipse/plugins/core/pom.xml b/branches/sca-java-1.3.3/tools/eclipse/plugins/core/pom.xml index 348bfc50e9..2352aedc21 100644 --- a/branches/sca-java-1.3.3/tools/eclipse/plugins/core/pom.xml +++ b/branches/sca-java-1.3.3/tools/eclipse/plugins/core/pom.xml @@ -33,12 +33,32 @@ <groupId>org.eclipse.jdt.debug</groupId> <artifactId>ui</artifactId> <version>3.2.100-v20070531-1800</version> + <!-- + Exclude org.eclipse.equinox:app to avoid maven bug/bad equinox version scheme. i.e.: + + Couldn't find a version in [1.0.0-v20070606] to match range [1.0.0,2.0.0) + org.eclipse.equinox:app:jar:null + --> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.eclipse.swt.win32.win32</groupId> <artifactId>x86</artifactId> <version>3.3.0-v3346</version> </dependency> + <!-- + Now include org.eclipse.equinox:app explicitly + --> + <dependency> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + <version>1.0.0-v20070606</version> + </dependency> </dependencies> <build> |