Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Davis2012-11-15 19:28:39 +0000
committerMatthew Davis2012-11-15 19:28:39 +0000
commit0e32c5ab497b55e41d039fc44d749149619d85ae (patch)
tree1893661dfe93d8763ca9090756aceb2532c6b2c8
parent15944bbb32252a60847023b344e3a0c4a017c6c0 (diff)
downloadorg.eclipse.stem.data-0e32c5ab497b55e41d039fc44d749149619d85ae.tar.gz
org.eclipse.stem.data-0e32c5ab497b55e41d039fc44d749149619d85ae.tar.xz
org.eclipse.stem.data-0e32c5ab497b55e41d039fc44d749149619d85ae.zip
Removing library dependencies from data plugins
git-svn-id: http://dev.eclipse.org/svnroot/technology/org.eclipse.stem/trunk/data@3607 92a21009-5b66-0410-b83a-dc787c41c6e9
-rw-r--r--geography/org.eclipse.stem.data.geography/META-INF/MANIFEST.MF3
-rw-r--r--population/org.eclipse.stem.data.geography.population.human.models/META-INF/MANIFEST.MF3
-rw-r--r--population/org.eclipse.stem.data.geography.population.human.models/src/org/eclipse/stem/data/geography/population/human/models/Activator.java4
3 files changed, 3 insertions, 7 deletions
diff --git a/geography/org.eclipse.stem.data.geography/META-INF/MANIFEST.MF b/geography/org.eclipse.stem.data.geography/META-INF/MANIFEST.MF
index 316a3a1..484d67a 100644
--- a/geography/org.eclipse.stem.data.geography/META-INF/MANIFEST.MF
+++ b/geography/org.eclipse.stem.data.geography/META-INF/MANIFEST.MF
@@ -5,8 +5,7 @@ Bundle-SymbolicName: org.eclipse.stem.data.geography;singleton:=true
Bundle-Version: 2.0.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.eclipse.stem.data.geography.Activator
-Require-Bundle: org.eclipse.stem.core,
- org.eclipse.core.runtime
+Require-Bundle: org.eclipse.core.runtime
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.stem.data.geography,
diff --git a/population/org.eclipse.stem.data.geography.population.human.models/META-INF/MANIFEST.MF b/population/org.eclipse.stem.data.geography.population.human.models/META-INF/MANIFEST.MF
index 7fff215..85af2e2 100644
--- a/population/org.eclipse.stem.data.geography.population.human.models/META-INF/MANIFEST.MF
+++ b/population/org.eclipse.stem.data.geography.population.human.models/META-INF/MANIFEST.MF
@@ -4,8 +4,7 @@ Bundle-Name: STEM Generated Human Population Models
Bundle-SymbolicName: org.eclipse.stem.data.geography.population.human.models;singleton:=true
Bundle-Version: 2.0.0.qualifier
Bundle-Activator: org.eclipse.stem.data.geography.population.human.models.Activator
-Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.stem.core
+Require-Bundle: org.eclipse.core.runtime
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.stem.data.geography.population.human.models
diff --git a/population/org.eclipse.stem.data.geography.population.human.models/src/org/eclipse/stem/data/geography/population/human/models/Activator.java b/population/org.eclipse.stem.data.geography.population.human.models/src/org/eclipse/stem/data/geography/population/human/models/Activator.java
index 62febc2..5ba26a3 100644
--- a/population/org.eclipse.stem.data.geography.population.human.models/src/org/eclipse/stem/data/geography/population/human/models/Activator.java
+++ b/population/org.eclipse.stem.data.geography.population.human.models/src/org/eclipse/stem/data/geography/population/human/models/Activator.java
@@ -12,7 +12,6 @@ package org.eclipse.stem.data.geography.population.human.models;
*******************************************************************************/
import org.eclipse.core.runtime.Plugin;
-import org.eclipse.stem.core.Constants;
import org.osgi.framework.BundleContext;
/**
@@ -24,8 +23,7 @@ public class Activator extends Plugin {
/**
* The plug-in ID
*/
- public static final String PLUGIN_ID = Constants.ID_ROOT
- + ".data.geography.population.human.models"; //$NON-NLS-1$
+ public static final String PLUGIN_ID = "org.eclipse.stem.data.geography.population.human.models"; //$NON-NLS-1$
// The shared instance
private static Activator plugin;

Back to the top