diff options
| author | Thanh Ha | 2012-08-08 20:08:10 +0000 |
|---|---|---|
| committer | Thomas Watson | 2012-09-12 13:05:30 +0000 |
| commit | d30b6738462d19849c008580fb580b41774cc25e (patch) | |
| tree | 335c4ff416a897e168b86978b8b13da0c8476382 | |
| parent | 7cc45963f25ef49da516036c6726ee95edd6783c (diff) | |
| download | rt.equinox.bundles-d30b6738462d19849c008580fb580b41774cc25e.tar.gz rt.equinox.bundles-d30b6738462d19849c008580fb580b41774cc25e.tar.xz rt.equinox.bundles-d30b6738462d19849c008580fb580b41774cc25e.zip | |
Fix issue with org.apache.commons.logging pulling in version 1.1 instead of 1.0v20120912-130530
| -rw-r--r-- | features/org.eclipse.equinox.server.p2/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.server.p2/pom.xml b/features/org.eclipse.equinox.server.p2/pom.xml index bc35d88b5..d1d9eb316 100644 --- a/features/org.eclipse.equinox.server.p2/pom.xml +++ b/features/org.eclipse.equinox.server.p2/pom.xml @@ -23,4 +23,24 @@ <artifactId>org.eclipse.equinox.server.p2</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>eclipse-feature</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <dependency-resolution> + <extraRequirements> + <requirement> + <type>eclipse-plugin</type> + <id>org.apache.commons.logging</id> + <versionRange>[1.0,1.1)</versionRange> + </requirement> + </extraRequirements> + </dependency-resolution> + </configuration> + </plugin> + </plugins> + </build> </project> |
