Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-08-08 20:08:10 +0000
committerThomas Watson2012-09-12 12:58:10 +0000
commite8d6abbfe9ea245e29fc11acbb2e69ceafd6ad1c (patch)
treedb1c3b9ed39568241ce72ed7fd4f44b4cb5babfb /features
parent45ff928b4690246a84d98130adb7db7e30c6e8b0 (diff)
downloadrt.equinox.bundles-e8d6abbfe9ea245e29fc11acbb2e69ceafd6ad1c.tar.gz
rt.equinox.bundles-e8d6abbfe9ea245e29fc11acbb2e69ceafd6ad1c.tar.xz
rt.equinox.bundles-e8d6abbfe9ea245e29fc11acbb2e69ceafd6ad1c.zip
Fix issue with org.apache.commons.logging pulling in version 1.1 instead of 1.0
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.server.p2/pom.xml20
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>

Back to the top