diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-29 19:10:15 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-29 19:10:15 +0000 |
commit | f3a0021a36bfa96f25f6b51ab0e1768034fff43f (patch) | |
tree | 9e0b45cca2395264809571147e62478bb9b6bca8 /branches | |
parent | 7388cfbd9adf981eaf900bc51a3cfa47aaa2a351 (diff) |
Fixed levels of Eclipse dependencies as the version ranges in their POMs are not recognized by Maven.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@708981 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r-- | branches/sca-equinox/tools/maven/maven-eclipse-compiler/pom.xml | 109 |
1 files changed, 106 insertions, 3 deletions
diff --git a/branches/sca-equinox/tools/maven/maven-eclipse-compiler/pom.xml b/branches/sca-equinox/tools/maven/maven-eclipse-compiler/pom.xml index acaef67c7c..86384f4fcc 100644 --- a/branches/sca-equinox/tools/maven/maven-eclipse-compiler/pom.xml +++ b/branches/sca-equinox/tools/maven/maven-eclipse-compiler/pom.xml @@ -74,6 +74,22 @@ <version>3.3.0-v_771</version> <exclusions> <exclusion> + <groupId>org.eclipse.core</groupId> + <artifactId>resources</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.core</groupId> + <artifactId>runtime</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.core</groupId> + <artifactId>filesystem</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse</groupId> + <artifactId>text</artifactId> + </exclusion> + <exclusion> <groupId>org.eclipse.equinox</groupId> <artifactId>common</artifactId> </exclusion> @@ -85,19 +101,106 @@ </dependency> <dependency> + <groupId>org.eclipse.core</groupId> + <artifactId>resources</artifactId> + <version>3.3.0-v20070604</version> + <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>org.eclipse.core</groupId> + <artifactId>runtime</artifactId> + <version>3.3.100-v20070530</version> + <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>org.eclipse.core</groupId> + <artifactId>filesystem</artifactId> + <version>1.1.0-v20070606</version> + <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>org.eclipse</groupId> + <artifactId>text</artifactId> + <version>3.3.0-v20070606-0010</version> + <scope>runtime</scope> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> <groupId>org.eclipse.equinox</groupId> <artifactId>app</artifactId> <version>1.0.0-v20070606</version> <scope>runtime</scope> - </dependency> + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>org.eclipse.equinox</groupId> <artifactId>common</artifactId> <version>3.3.0-v20070426</version> <scope>runtime</scope> - </dependency> - + <exclusions> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>common</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.equinox</groupId> + <artifactId>app</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> <build> |