Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Nettleton2011-11-22 18:39:16 +0000
committerBob Nettleton2011-11-22 18:39:16 +0000
commit2b7425b4bff4326da3ab00ac6d9e9536ccc1a2ea (patch)
tree174565b80fae9f239895e13ae53b519e837444da
parente497d813e44f21ab960d7e3b41557a550fe1f494 (diff)
downloadorg.eclipse.gemini.naming-2b7425b4bff4326da3ab00ac6d9e9536ccc1a2ea.tar.gz
org.eclipse.gemini.naming-2b7425b4bff4326da3ab00ac6d9e9536ccc1a2ea.tar.xz
org.eclipse.gemini.naming-2b7425b4bff4326da3ab00ac6d9e9536ccc1a2ea.zip
Updated dependency names in the integration-testing pom.xml. This was necessary in order to get the Gemini Naming integration tests up and running again. Some name changes in maven dependencies over the last year caused the test suite to fail. Both the unit and integration tests for Gemini Naming are now back in operation.
-rw-r--r--integration-testing/pom.xml37
1 files changed, 28 insertions, 9 deletions
diff --git a/integration-testing/pom.xml b/integration-testing/pom.xml
index d818036..085bfd3 100644
--- a/integration-testing/pom.xml
+++ b/integration-testing/pom.xml
@@ -17,14 +17,32 @@
<name>Integration Tests for the Gemini Naming Implementation</name>
<dependencies>
+ <dependency>
+ <groupId>org.eclipse</groupId>
+ <artifactId>osgi</artifactId>
+ <version>3.5.0.v20090520</version>
+ </dependency>
+
<dependency>
- <groupId>org.eclipse.osgi</groupId>
- <artifactId>org.eclipse.osgi</artifactId>
- <version>${equinox.version}</version>
- <type>jar</type>
- <scope>provided</scope>
+ <groupId>org.slf4j</groupId>
+ <artifactId>com.springsource.slf4j.api</artifactId>
+ <version>1.5.0</version>
</dependency>
+
<dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>com.springsource.slf4j.log4j</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+
+ <dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi_R4_compendium</artifactId>
<version>1.0</version>
@@ -44,10 +62,11 @@
<!--
dependency on the Spring OSGi Test Framework for integration testing
-->
- <dependency>
- <groupId>org.springframework.osgi</groupId>
- <artifactId>org.springframework.osgi.test</artifactId>
- <version>1.2.1</version>
+
+ <dependency>
+ <groupId>org.springframework.osgi</groupId>
+ <artifactId>spring-osgi-test</artifactId>
+ <version>1.2.1</version>
</dependency>
<!--

Back to the top