diff options
author | Stephan Herrmann | 2010-07-20 00:26:14 +0000 |
---|---|---|
committer | Stephan Herrmann | 2010-07-20 00:26:14 +0000 |
commit | d70f67fe10b2aac0c2fd454d185b7bcbc1935de2 (patch) | |
tree | 6839e6acd26067393b8064351f0736776ed1976c /testplugins/org.eclipse.objectteams.otdt.debug.tests | |
parent | 0f3aa62ff4418f3fbd6236479b501cb3776cb5e8 (diff) | |
download | org.eclipse.objectteams-d70f67fe10b2aac0c2fd454d185b7bcbc1935de2.tar.gz org.eclipse.objectteams-d70f67fe10b2aac0c2fd454d185b7bcbc1935de2.tar.xz org.eclipse.objectteams-d70f67fe10b2aac0c2fd454d185b7bcbc1935de2.zip |
After re-packaging the OTRE for Bug 320191 -
[pde] Exporting an OT plug-in requires to have org.eclipse.objectteams.runtime in the ws:
* Simplify by removing intermediate variable OTRUNTIME_LIBDIR
* Fix regressions in, e.g., OTBuilderTests: when OTRE is served from the projects bin folder,
a linked folder was inconsistently created
(missing in the ws-elementTree - to be checked with JDT/Core team).
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.debug.tests')
-rw-r--r-- | testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java index b700ece19..0c98f3e54 100644 --- a/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java +++ b/testplugins/org.eclipse.objectteams.otdt.debug.tests/src/org/eclipse/objectteams/otdt/debug/tests/OTProjectCreationDecorator.java @@ -44,7 +44,6 @@ import org.eclipse.jdt.launching.JavaRuntime; import org.eclipse.jface.dialogs.MessageDialogWithToggle;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.objectteams.otdt.core.ext.OTREContainer;
-import org.eclipse.objectteams.otdt.debug.OTDebugPlugin;
import org.eclipse.ui.IPerspectiveDescriptor;
import org.eclipse.ui.IViewReference;
import org.eclipse.ui.IWorkbench;
@@ -125,7 +124,7 @@ public class OTProjectCreationDecorator extends AbstractOTDTDebugTest { assertNotNull("No default JRE", vm);
JavaProjectHelper.addContainerEntry(fJavaProject, new Path(JavaRuntime.JRE_CONTAINER));
//{ObjectTeams: add otre.jar:
- JavaProjectHelper.addContainerEntry(fJavaProject, OTREContainer.OTRE_CONTAINER_PATH);
+ JavaProjectHelper.addContainerEntry(fJavaProject, new Path(OTREContainer.OTRE_CONTAINER_NAME));
// SH}
pro = fJavaProject.getProject();
|