diff --git a/bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF index 63f60818284..895b9ebcdfc 100644 --- a/bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF @@ -5,7 +5,12 @@ Bundle-SymbolicName: org.eclipse.equinox.compendium.tests Bundle-Version: 1.2.400.qualifier Bundle-Activator: org.eclipse.equinox.compendium.tests.Activator Require-Bundle: org.eclipse.core.runtime, - org.junit;bundle-version="4.12.0" + org.junit;bundle-version="4.12.0", + org.eclipse.equinox.coordinator, + org.eclipse.equinox.useradmin, + org.eclipse.equinox.event, + org.eclipse.equinox.metatype, + org.apache.felix.scr Import-Package: org.eclipse.equinox.metatype;version="1.2.0", org.eclipse.equinox.metatype.impl;version="1.2.0", org.eclipse.osgi.tests.bundles, diff --git a/bundles/org.eclipse.equinox.compendium.tests/build.properties b/bundles/org.eclipse.equinox.compendium.tests/build.properties index 63b3d59fa98..1cd9464039d 100644 --- a/bundles/org.eclipse.equinox.compendium.tests/build.properties +++ b/bundles/org.eclipse.equinox.compendium.tests/build.properties @@ -55,6 +55,3 @@ jars.compile.order = bundle_tests/metatype/metatype.tb1.jar,\ bundle_tests/metatype/metatype.tb10.jar,\ bundle_tests/metatype/metatype.extendable.tb1.jar,\ bundle_tests/metatype/metatype.getMinMax.tb1.jar - -# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless -pom.model.property.skipTests = true diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/Activator.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/Activator.java index 18946f0cb6e..0eebf6691c0 100644 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/Activator.java +++ b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/Activator.java @@ -13,79 +13,30 @@ *******************************************************************************/ package org.eclipse.equinox.compendium.tests; +import org.eclipse.core.runtime.Platform; import org.osgi.framework.*; -import org.osgi.service.packageadmin.PackageAdmin; -import org.osgi.util.tracker.ServiceTracker; /** * The activator class controls the plug-in life cycle */ -@SuppressWarnings("deprecation") // PackageAdmin public class Activator implements BundleActivator { public static String BUNDLE_COORDINATOR = "org.eclipse.equinox.coordinator"; //$NON-NLS-1$ public static String BUNDLE_EVENT = "org.eclipse.equinox.event"; //$NON-NLS-1$ public static String BUNDLE_METATYPE = "org.eclipse.equinox.metatype"; //$NON-NLS-1$ public static String BUNDLE_USERADMIN = "org.eclipse.equinox.useradmin"; //$NON-NLS-1$ - private static Activator plugin; - private static BundleContext context; - - private ServiceTracker packageAdminTracker; - - /* - * (non-Javadoc) - * - * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) - */ public void start(BundleContext bc) throws Exception { - plugin = this; - packageAdminTracker = new ServiceTracker(bc, PackageAdmin.class.getName(), null); - packageAdminTracker.open(); - Activator.context = bc; - } - - /* - * (non-Javadoc) - * - * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext bc) throws Exception { - if (packageAdminTracker != null) { - packageAdminTracker.close(); - packageAdminTracker = null; - } - plugin = null; + FrameworkUtil.getBundle(org.apache.felix.scr.info.ScrInfo.class).start(); } - private static Activator getDefault() { - return plugin; + public void stop(BundleContext bc) throws Exception { // no-op } - public static synchronized BundleContext getBundleContext() { - return context; + public static BundleContext getBundleContext() { + return FrameworkUtil.getBundle(Activator.class).getBundleContext(); } - public static synchronized Bundle getBundle(String symbolicName) { - PackageAdmin packageAdmin = Activator.getDefault().getPackageAdmin(); - if (packageAdmin == null) - return null; - - Bundle[] bundles = packageAdmin.getBundles(symbolicName, null); - if (bundles == null) - return null; - for (Bundle bundle : bundles) { - if ((bundle.getState() & (Bundle.INSTALLED | Bundle.UNINSTALLED)) == 0) { - return bundle; - } - } - return null; - } - - private PackageAdmin getPackageAdmin() { - if (packageAdminTracker == null) { - return null; - } - return (PackageAdmin) packageAdminTracker.getService(); + public static Bundle getBundle(String symbolicName) { + return Platform.getBundle(symbolicName); } - } diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/AllTests.java deleted file mode 100644 index c2aaede7837..00000000000 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/compendium/tests/AllTests.java +++ /dev/null @@ -1,25 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2008, 2011 IBM Corporation and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.equinox.compendium.tests; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; - -@RunWith(Suite.class) -@SuiteClasses({ org.eclipse.equinox.coordinator.tests.AllTests.class, org.eclipse.equinox.event.tests.AllTests.class, - org.eclipse.equinox.metatype.tests.AllTests.class, org.eclipse.equinox.useradmin.tests.AllTests.class }) -public class AllTests { - // see @SuiteClasses -} diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/coordinator/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/coordinator/tests/AllTests.java deleted file mode 100644 index 3b3f986cc82..00000000000 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/coordinator/tests/AllTests.java +++ /dev/null @@ -1,24 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011, 2013 IBM Corporation and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.equinox.coordinator.tests; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; - -@RunWith(Suite.class) -@SuiteClasses({ CoordinationMaxTimeoutTest.class, ReverseParticipantOrderNotifyTest.class, BugTests.class }) -public class AllTests { - // see @SuiteClasses -} diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java deleted file mode 100644 index cebe698d290..00000000000 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/event/tests/AllTests.java +++ /dev/null @@ -1,24 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2010 IBM Corporation and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.equinox.event.tests; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; - -@RunWith(Suite.class) -@SuiteClasses(EventAdminTest.class) -public class AllTests { - // see @SuiteClasses -} diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/metatype/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/metatype/tests/AllTests.java deleted file mode 100644 index c75c9c13ce7..00000000000 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/metatype/tests/AllTests.java +++ /dev/null @@ -1,26 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2010, 2011 IBM Corporation and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.equinox.metatype.tests; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; - -@RunWith(Suite.class) -@SuiteClasses({ AttributeTypePasswordTest.class, Bug332161Test.class, Bug340899Test.class, BugTests.class, - SameOcdPidFactoryPidTest.class, ExtendableTest.class, Bug358969Test.class, UnresolvedBundleTest.class, - GetDefaultValueTest.class, IconTest.class, Bug395196Test.class, NoADTest.class, GetMinMaxTest.class }) -public class AllTests { - // see @SuiteClasses -} diff --git a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/useradmin/tests/AllTests.java b/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/useradmin/tests/AllTests.java deleted file mode 100644 index a64bf96c1ed..00000000000 --- a/bundles/org.eclipse.equinox.compendium.tests/src/org/eclipse/equinox/useradmin/tests/AllTests.java +++ /dev/null @@ -1,24 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2008 IBM Corporation and others - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.equinox.useradmin.tests; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; -import org.junit.runners.Suite.SuiteClasses; - -@RunWith(Suite.class) -@SuiteClasses({ UserTest.class, GroupTest.class, UserAdminEventAdapterTest.class }) -public class AllTests { - // See @SuiteClasses -} diff --git a/bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF index 7be00effc2e..1237d963a1b 100644 --- a/bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF @@ -2,15 +2,9 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: Equinox Region Tests Bundle-SymbolicName: org.eclipse.equinox.region.tests -Bundle-Version: 1.6.200.qualifier +Bundle-Version: 1.6.300.qualifier Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: junit.framework;version="4.8.1", - org.aspectj.internal.lang.annotation;version="[1.6.3,2.0.0)";resolution:=optional, - org.aspectj.lang;version="[1.6.3,2.0.0)";resolution:=optional, - org.aspectj.lang.annotation;version="[1.6.3,2.0.0)";resolution:=optional, - org.aspectj.lang.reflect;version="[1.6.3,2.0.0)";resolution:=optional, - org.aspectj.runtime.internal;version="[1.6.3,2.0.0)";resolution:=optional, - org.aspectj.runtime.reflect;version="[1.6.3,2.0.0)";resolution:=optional, org.eclipse.core.runtime;version="3.7.0", org.eclipse.core.tests.harness, org.eclipse.equinox.region;version="1.1.0", diff --git a/bundles/org.eclipse.equinox.region.tests/build.properties b/bundles/org.eclipse.equinox.region.tests/build.properties index 8629250043d..78b314d42ec 100644 --- a/bundles/org.eclipse.equinox.region.tests/build.properties +++ b/bundles/org.eclipse.equinox.region.tests/build.properties @@ -60,3 +60,5 @@ jars.compile.order = bundle_tests/PackageProvider1.jar,\ src.includes = about.html +# Maven properties, see https://github.com/eclipse/tycho/wiki/Tycho-Pomless +pom.model.property.testClass = org.eclipse.equinox.region.tests.AllTests diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/BundleIdBasedRegionTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/BundleIdBasedRegionTests.java index c4e49cd1708..9390012d6c8 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/BundleIdBasedRegionTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/BundleIdBasedRegionTests.java @@ -28,10 +28,10 @@ import java.util.Iterator; import org.eclipse.equinox.region.*; import org.eclipse.equinox.region.RegionDigraph.FilteredRegion; -import org.junit.Before; -import org.junit.Test; +import org.junit.*; import org.osgi.framework.*; +@Ignore public class BundleIdBasedRegionTests { private static final String OTHER_REGION_NAME = "other"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphPeristenceTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphPeristenceTests.java index 84ca2b6077f..0e9b9b7711a 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphPeristenceTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphPeristenceTests.java @@ -23,6 +23,7 @@ import org.junit.*; import org.osgi.framework.*; +@Ignore public class StandardRegionDigraphPeristenceTests { private RegionDigraph digraph; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphTests.java index aae21bd1a83..5cf9e6a45ad 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionDigraphTests.java @@ -27,10 +27,10 @@ import org.eclipse.equinox.region.RegionDigraph.FilteredRegion; import org.eclipse.virgo.teststubs.osgi.framework.StubBundle; import org.eclipse.virgo.teststubs.osgi.framework.StubBundleContext; -import org.junit.Before; -import org.junit.Test; +import org.junit.*; import org.osgi.framework.*; +@Ignore public class StandardRegionDigraphTests { private RegionDigraph digraph; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionFilterTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionFilterTests.java index e5887fd90df..b9fc3bc2bb3 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionFilterTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/StandardRegionFilterTests.java @@ -25,12 +25,12 @@ import org.eclipse.equinox.region.RegionFilter; import org.eclipse.equinox.region.RegionFilterBuilder; import org.eclipse.virgo.teststubs.osgi.framework.*; -import org.junit.Before; -import org.junit.Test; +import org.junit.*; import org.osgi.framework.*; import org.osgi.framework.wiring.BundleCapability; import org.osgi.framework.wiring.BundleRevision; +@Ignore public class StandardRegionFilterTests { private static final String BUNDLE_SYMBOLIC_NAME = "A"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleCollisionHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleCollisionHookTests.java index e767a39f562..569ed9676aa 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleCollisionHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleCollisionHookTests.java @@ -27,6 +27,7 @@ import org.osgi.framework.*; import org.osgi.framework.hooks.bundle.CollisionHook; +@Ignore public class RegionBundleCollisionHookTests { private static final String BUNDLE_X = "X"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleEventHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleEventHookTests.java index 633142415a5..fcc829a74ff 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleEventHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleEventHookTests.java @@ -26,6 +26,7 @@ import org.osgi.framework.*; import org.osgi.framework.hooks.bundle.EventHook; +@Ignore public class RegionBundleEventHookTests { private static final String BUNDLE_X = "X"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleFindHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleFindHookTests.java index 3f1eec73016..ddfacf0fb90 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleFindHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionBundleFindHookTests.java @@ -27,6 +27,7 @@ import org.osgi.framework.*; import org.osgi.framework.hooks.bundle.FindHook; +@Ignore public class RegionBundleFindHookTests { private static final String BUNDLE_X = "X"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionResolverHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionResolverHookTests.java index 4e8c64330ce..639b0e211f3 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionResolverHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionResolverHookTests.java @@ -30,6 +30,7 @@ import org.osgi.resource.Capability; import org.osgi.resource.Requirement; +@Ignore public class RegionResolverHookTests { private static final String PACKAGE_A = "package.a"; diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceEventHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceEventHookTests.java index 91b0ab650f5..324c1d3a136 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceEventHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceEventHookTests.java @@ -28,6 +28,7 @@ /** * This testcase was based on {@link RegionBundleFindHookTests}. */ +@Ignore @SuppressWarnings("deprecation") // EventHook, RegionFilter.VISIBLE_SERVICE_NAMESPACE public class RegionServiceEventHookTests { diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceFindHookTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceFindHookTests.java index 517890a6a86..2567824e8cb 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceFindHookTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/internal/tests/hook/RegionServiceFindHookTests.java @@ -29,6 +29,7 @@ /** * This testcase was based on {@link RegionBundleFindHookTests}. */ +@Ignore @SuppressWarnings("deprecation") // RegionFilter.VISIBLE_SERVICE_NAMESPACE public class RegionServiceFindHookTests { diff --git a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java index 1008d5e8fb1..91720acf4b4 100644 --- a/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java +++ b/bundles/org.eclipse.equinox.region.tests/src/org/eclipse/equinox/region/tests/system/RegionSystemTests.java @@ -29,8 +29,7 @@ import javax.management.*; import org.eclipse.equinox.region.*; import org.eclipse.equinox.region.RegionDigraph.FilteredRegion; -import org.junit.Rule; -import org.junit.Test; +import org.junit.*; import org.junit.rules.TestName; import org.osgi.framework.*; import org.osgi.framework.hooks.bundle.CollisionHook; @@ -40,6 +39,7 @@ import org.osgi.framework.wiring.*; import org.osgi.util.tracker.ServiceTracker; +@Ignore @SuppressWarnings("deprecation") // RegionFilter.VISIBLE_SERVICE_NAMESPACE public class RegionSystemTests extends AbstractRegionSystemTest { diff --git a/pom.xml b/pom.xml index 68986ce3ddb..a68aa37f837 100644 --- a/pom.xml +++ b/pom.xml @@ -160,12 +160,12 @@ bundles/org.eclipse.equinox.bidi.tests bundles/org.eclipse.equinox.cm.test bundles/org.eclipse.equinox.common.tests - + bundles/org.eclipse.equinox.compendium.tests + bundles/org.eclipse.equinox.ds.tests bundles/org.eclipse.equinox.preferences.tests - + bundles/org.eclipse.equinox.security.tests bundles/org.eclipse.equinox.app bundles/org.eclipse.equinox.preferences