Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaimar Buehmann2013-02-22 09:51:02 +0000
committerRaimar Buehmann2013-02-22 09:51:02 +0000
commit6cffff0651bc0b64653fbcb582d58671c30355d0 (patch)
tree979abeb3e2f681a84d516fb5889c5ab2caa4144c
parent939250850a6ef3b1f30bc32ea3ad53f163562294 (diff)
downloadorg.eclipse.jubula.core-6cffff0651bc0b64653fbcb582d58671c30355d0.tar.gz
org.eclipse.jubula.core-6cffff0651bc0b64653fbcb582d58671c30355d0.tar.xz
org.eclipse.jubula.core-6cffff0651bc0b64653fbcb582d58671c30355d0.zip
Non-sprint-task - P1: solved Configuration error caused by missing package exports
* added missing exports for rc.common packages to metafile in rc.rcp.common * renamed package rc.rcp.common.utils to rc.rcp.common.classloader
-rw-r--r--org.eclipse.jubula.rc.rcp.common/META-INF/MANIFEST.MF8
-rw-r--r--org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/classloader/EclipseUrlLocator.java (renamed from org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/utils/EclipseUrlLocator.java)2
-rw-r--r--org.eclipse.jubula.rc.rcp.e3/src/org/eclipse/jubula/rc/rcp/e3/accessor/E3Startup.java2
-rw-r--r--org.eclipse.jubula.rc.rcp.swt/src/org/eclipse/jubula/rc/rcp/swt/aut/SwtRemoteControlService.java2
4 files changed, 10 insertions, 4 deletions
diff --git a/org.eclipse.jubula.rc.rcp.common/META-INF/MANIFEST.MF b/org.eclipse.jubula.rc.rcp.common/META-INF/MANIFEST.MF
index 9ed36b09f..48af8dee7 100644
--- a/org.eclipse.jubula.rc.rcp.common/META-INF/MANIFEST.MF
+++ b/org.eclipse.jubula.rc.rcp.common/META-INF/MANIFEST.MF
@@ -30,17 +30,23 @@ Export-Package: org.apache.commons.beanutils,
org.eclipse.jubula.communication.message,
org.eclipse.jubula.rc.common,
org.eclipse.jubula.rc.common.adaptable,
+ org.eclipse.jubula.rc.common.businessprocess,
+ org.eclipse.jubula.rc.common.classloader,
org.eclipse.jubula.rc.common.commands,
org.eclipse.jubula.rc.common.components,
org.eclipse.jubula.rc.common.driver,
org.eclipse.jubula.rc.common.exception,
org.eclipse.jubula.rc.common.implclasses,
+ org.eclipse.jubula.rc.common.implclasses.table,
+ org.eclipse.jubula.rc.common.implclasses.tree,
org.eclipse.jubula.rc.common.listener,
org.eclipse.jubula.rc.common.logger,
+ org.eclipse.jubula.rc.common.registration,
org.eclipse.jubula.rc.common.tester,
org.eclipse.jubula.rc.common.tester.adapter.interfaces,
+ org.eclipse.jubula.rc.common.tester.interfaces,
org.eclipse.jubula.rc.common.util,
- org.eclipse.jubula.rc.rcp.common.utils,
+ org.eclipse.jubula.rc.rcp.common.classloader,
org.eclipse.jubula.tools.constants,
org.eclipse.jubula.tools.exception,
org.eclipse.jubula.tools.i18n,
diff --git a/org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/utils/EclipseUrlLocator.java b/org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/classloader/EclipseUrlLocator.java
index 437feba7d..366bc671c 100644
--- a/org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/utils/EclipseUrlLocator.java
+++ b/org.eclipse.jubula.rc.rcp.common/src/org/eclipse/jubula/rc/rcp/common/classloader/EclipseUrlLocator.java
@@ -8,7 +8,7 @@
* Contributors:
* BREDEX GmbH - initial API and implementation and/or initial documentation
*******************************************************************************/
-package org.eclipse.jubula.rc.rcp.common.utils;
+package org.eclipse.jubula.rc.rcp.common.classloader;
import java.io.IOException;
import java.net.URL;
diff --git a/org.eclipse.jubula.rc.rcp.e3/src/org/eclipse/jubula/rc/rcp/e3/accessor/E3Startup.java b/org.eclipse.jubula.rc.rcp.e3/src/org/eclipse/jubula/rc/rcp/e3/accessor/E3Startup.java
index b36b7eafc..c535deee4 100644
--- a/org.eclipse.jubula.rc.rcp.e3/src/org/eclipse/jubula/rc/rcp/e3/accessor/E3Startup.java
+++ b/org.eclipse.jubula.rc.rcp.e3/src/org/eclipse/jubula/rc/rcp/e3/accessor/E3Startup.java
@@ -18,7 +18,7 @@ import java.util.Properties;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jubula.rc.common.AUTServer;
import org.eclipse.jubula.rc.common.adaptable.AdapterFactoryRegistry;
-import org.eclipse.jubula.rc.rcp.common.utils.EclipseUrlLocator;
+import org.eclipse.jubula.rc.rcp.common.classloader.EclipseUrlLocator;
import org.eclipse.jubula.rc.rcp.e3.gef.inspector.GefInspectorListenerAppender;
import org.eclipse.jubula.rc.rcp.e3.gef.listener.GefPartListener;
import org.eclipse.jubula.rc.rcp.swt.aut.RcpSwtComponentNamer;
diff --git a/org.eclipse.jubula.rc.rcp.swt/src/org/eclipse/jubula/rc/rcp/swt/aut/SwtRemoteControlService.java b/org.eclipse.jubula.rc.rcp.swt/src/org/eclipse/jubula/rc/rcp/swt/aut/SwtRemoteControlService.java
index 0686b872f..afd93127d 100644
--- a/org.eclipse.jubula.rc.rcp.swt/src/org/eclipse/jubula/rc/rcp/swt/aut/SwtRemoteControlService.java
+++ b/org.eclipse.jubula.rc.rcp.swt/src/org/eclipse/jubula/rc/rcp/swt/aut/SwtRemoteControlService.java
@@ -4,7 +4,7 @@ import java.util.Properties;
import org.eclipse.jubula.rc.common.AUTServer;
import org.eclipse.jubula.rc.common.adaptable.AdapterFactoryRegistry;
-import org.eclipse.jubula.rc.rcp.common.utils.EclipseUrlLocator;
+import org.eclipse.jubula.rc.rcp.common.classloader.EclipseUrlLocator;
import org.eclipse.jubula.rc.swt.SwtAUTServer;
import org.eclipse.jubula.tools.constants.AutConfigConstants;
import org.eclipse.jubula.tools.utils.EnvironmentUtils;

Back to the top