Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-01-19 16:45:31 +0000
committerAlexander Kurtakov2021-01-19 16:45:31 +0000
commit4241003bacf6d7a2da87b714d4225dacbc085eaf (patch)
treedb26bb2c7c8fda96dc546215af723879990ab5fc
parente3c7a16f12e3e0484b86a6af49287b3dd153b43a (diff)
downloadrt.equinox.p2-4241003bacf6d7a2da87b714d4225dacbc085eaf.tar.gz
rt.equinox.p2-4241003bacf6d7a2da87b714d4225dacbc085eaf.tar.xz
rt.equinox.p2-4241003bacf6d7a2da87b714d4225dacbc085eaf.zip
Stop using equinox.ds in p2 tests.
Change-Id: Icc0ae31da07ced42cac6487877e83ed936ddea92 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractSharedBundleProductTest.java22
1 files changed, 17 insertions, 5 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractSharedBundleProductTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractSharedBundleProductTest.java
index 2a220009d..47ff21be0 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractSharedBundleProductTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/AbstractSharedBundleProductTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2017 IBM Corporation and others.
+ * Copyright (c) 2010, 2021 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -13,9 +13,21 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.reconciler.dropins;
-import java.io.*;
-import java.net.*;
-import java.util.*;
+import java.io.BufferedInputStream;
+import java.io.BufferedOutputStream;
+import java.io.File;
+import java.io.FileFilter;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.MalformedURLException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Properties;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.URIUtil;
import org.eclipse.equinox.frameworkadmin.BundleInfo;
@@ -57,7 +69,7 @@ public class AbstractSharedBundleProductTest extends AbstractReconcilerTest {
"org.eclipse.ecf.ssl", //
"org.eclipse.equinox.app", //
"org.eclipse.equinox.common", //
- "org.eclipse.equinox.ds", //
+ "org.apache.felix.scr", //
"org.eclipse.equinox.frameworkadmin", //
"org.eclipse.equinox.frameworkadmin.equinox", //
"org.eclipse.equinox.p2.artifact.repository", //

Back to the top