Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-10-24 15:43:50 +0000
committerDarin Swanson2003-10-24 15:43:50 +0000
commitf1677c96f0a5437ab24d99bb83e2d680b9a0b595 (patch)
treed5785b9bd3bc9a97c6bc8436a4522f8fdea43d17
parentf1540ecda8452a2124fbfe139425baff49fbd286 (diff)
downloadeclipse.platform.debug-f1677c96f0a5437ab24d99bb83e2d680b9a0b595.tar.gz
eclipse.platform.debug-f1677c96f0a5437ab24d99bb83e2d680b9a0b595.tar.xz
eclipse.platform.debug-f1677c96f0a5437ab24d99bb83e2d680b9a0b595.zip
Bug 45513 - Fix core variables plugin for build
-rw-r--r--org.eclipse.core.variables/build.properties17
-rw-r--r--org.eclipse.core.variables/plugin.xml6
2 files changed, 22 insertions, 1 deletions
diff --git a/org.eclipse.core.variables/build.properties b/org.eclipse.core.variables/build.properties
new file mode 100644
index 000000000..e6c0fdaec
--- /dev/null
+++ b/org.eclipse.core.variables/build.properties
@@ -0,0 +1,17 @@
+###############################################################################
+# Copyright (c) 2000, 2003 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = .options,\
+ plugin.xml,\
+ plugin.properties,\
+ *.jar,\
+ about.html
+source.variables.jar = src/
+src.includes=about.html, schema/
diff --git a/org.eclipse.core.variables/plugin.xml b/org.eclipse.core.variables/plugin.xml
index 6bfee3bd3..b51c0c2ff 100644
--- a/org.eclipse.core.variables/plugin.xml
+++ b/org.eclipse.core.variables/plugin.xml
@@ -6,7 +6,11 @@
provider-name="%providerName"
class="org.eclipse.core.variables.VariablesPlugin">
- <runtime>
+ <runtime>
+ <library name="variables.jar">
+ <export name="*"/>
+ <packages prefixes="org.eclipse.core.variables,org.eclipse.core.internal.variables"/>
+ </library>
</runtime>
<extension-point id="valueVariables" name="%valueVariablesExtensionPointName" schema="schema/valueVariables.exsd"/>

Back to the top