Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2003-11-28 20:48:54 +0000
committerDarin Wright2003-11-28 20:48:54 +0000
commit1335a9bcbc4530d646001d16b1ab686c599dc548 (patch)
tree71f9f6cc83b3bb60cd6f79aa29ef304c7615bd68 /org.eclipse.core.variables
parent7e9b11009b005198824b94abe851c4a162aec8d9 (diff)
downloadeclipse.platform.debug-1335a9bcbc4530d646001d16b1ab686c599dc548.tar.gz
eclipse.platform.debug-1335a9bcbc4530d646001d16b1ab686c599dc548.tar.xz
eclipse.platform.debug-1335a9bcbc4530d646001d16b1ab686c599dc548.zip
osgi migration + PDE container classpath
Diffstat (limited to 'org.eclipse.core.variables')
-rw-r--r--org.eclipse.core.variables/.classpath9
-rw-r--r--org.eclipse.core.variables/.project1
-rw-r--r--org.eclipse.core.variables/plugin.xml3
3 files changed, 8 insertions, 5 deletions
diff --git a/org.eclipse.core.variables/.classpath b/org.eclipse.core.variables/.classpath
index 1d9c0b193..065ac06e1 100644
--- a/org.eclipse.core.variables/.classpath
+++ b/org.eclipse.core.variables/.classpath
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="src" path="/org.eclipse.core.boot"/>
- <classpathentry kind="src" path="/org.eclipse.core.runtime"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="output" path="bin"/>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/org.eclipse.core.variables/.project b/org.eclipse.core.variables/.project
index 4d5f62c31..e64abaf42 100644
--- a/org.eclipse.core.variables/.project
+++ b/org.eclipse.core.variables/.project
@@ -5,6 +5,7 @@
<projects>
<project>org.eclipse.core.boot</project>
<project>org.eclipse.core.runtime</project>
+ <project>org.eclipse.core.runtime.compatibility</project>
</projects>
<buildSpec>
<buildCommand>
diff --git a/org.eclipse.core.variables/plugin.xml b/org.eclipse.core.variables/plugin.xml
index f5afa611d..59c9bb433 100644
--- a/org.eclipse.core.variables/plugin.xml
+++ b/org.eclipse.core.variables/plugin.xml
@@ -13,6 +13,9 @@
<packages prefixes="org.eclipse.core.variables,org.eclipse.core.internal.variables"/>
</library>
</runtime>
+ <requires>
+ <import plugin="org.eclipse.core.runtime.compatibility"/>
+ </requires>
<extension-point id="valueVariables" name="%valueVariablesExtensionPointName" schema="schema/valueVariables.exsd"/>
<extension-point id="dynamicVariables" name="%dynamicVariablesExtensionPointName" schema="schema/dynamicVariables.exsd"/>

Back to the top