use pax-exam-container-forked in order to be able to use eclipse debugger
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1532712 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dependencymanager/test/pom.xml b/dependencymanager/test/pom.xml
index ce41903..6031681 100644
--- a/dependencymanager/test/pom.xml
+++ b/dependencymanager/test/pom.xml
@@ -78,13 +78,21 @@
</dependency>
<!-- Integration Testing with Pax Exam -->
+ <!--
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-native</artifactId>
<version>${exam.version}</version>
<scope>test</scope>
</dependency>
-
+ -->
+ <dependency>
+ <groupId>org.ops4j.pax.exam</groupId>
+ <artifactId>pax-exam-container-forked</artifactId>
+ <version>${exam.version}</version>
+ <scope>test</scope>
+ </dependency>
+
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
@@ -116,14 +124,14 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
- <version>0.9.20</version>
+ <version>0.9.29</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
- <version>0.9.20</version>
+ <version>0.9.29</version>
<scope>test</scope>
</dependency>
diff --git a/dependencymanager/test/src/test/java/org/apache/felix/dm/test/integration/common/TestBase.java b/dependencymanager/test/src/test/java/org/apache/felix/dm/test/integration/common/TestBase.java
index 3d63e48..37adf5f 100644
--- a/dependencymanager/test/src/test/java/org/apache/felix/dm/test/integration/common/TestBase.java
+++ b/dependencymanager/test/src/test/java/org/apache/felix/dm/test/integration/common/TestBase.java
@@ -79,9 +79,6 @@
// The default symbolic name for our test bundle
protected static final String TESTBUNDLE_SN_DEF = "org.apache.felix.dependencymanager.test";
- // The JVM option to set to enable remote debugging
- protected static final String DEBUG_VM_OPTION = "-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005";
-
// The package exported by our test bundle, which we import from all integration tests.
private static final String TESTBUNDLE_PACKAGE = "org.apache.felix.dm.test.components";