Skip to content
Snippets Groups Projects
Commit 55ecb9d0 authored by Thomas's avatar Thomas
Browse files

updated version numbers

parent f890c0a1
Branches
No related tags found
No related merge requests found
Showing
with 52 additions and 43 deletions
# #
pluginName = editpolicymodel Tests pluginName = Generic Editpolicy Model Tests
providerName = www.example.org providerName = TU Dresden
...@@ -2,14 +2,14 @@ Manifest-Version: 1.0 ...@@ -2,14 +2,14 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.framed.iorm.editpolicymodel;singleton:=true Bundle-SymbolicName: org.framed.iorm.editpolicymodel;singleton:=true
Bundle-Version: 0.1.0.qualifier Bundle-Version: 1.0.0
Bundle-ClassPath: . Bundle-ClassPath: .
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime, Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.ecore;visibility:=reexport, org.eclipse.emf.ecore;visibility:=reexport,
org.eclipse.emf.codegen.ecore, org.eclipse.emf.codegen.ecore,
org.framed.iorm.model;bundle-version="1.0.0";visibility:=reexport, org.framed.iorm.model;bundle-version="2.2.0";visibility:=reexport,
org.framed.iorm.featuremodel;bundle-version="1.0.0" org.framed.iorm.featuremodel;bundle-version="1.0.0"
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
......
# #
pluginName = Editpolicymodel Model pluginName = General Editpolicy Model
providerName = framed providerName = TU Dresden
source.. = src/ source.. = src/
output.. = bin/ output.. = bin/
bin.includes = META-INF/,\ bin.includes = META-INF/,\
. .,\
model.xml
src.includes = model.xml,\
META-INF/
...@@ -2,7 +2,7 @@ Manifest-Version: 1.0 ...@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.framed.iorm.model.edit;singleton:=true Bundle-SymbolicName: org.framed.iorm.model.edit;singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 2.2.0.qualifier
Bundle-ClassPath: . Bundle-ClassPath: .
Bundle-Activator: org.framed.iorm.model.provider.ORMEditPlugin$Implementation Bundle-Activator: org.framed.iorm.model.provider.ORMEditPlugin$Implementation
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
......
# #
pluginName = ORM Edit Support pluginName = Object Relation Model Edit Support
providerName = www.example.org providerName = TU Dresden
_UI_CreateChild_text = {0} _UI_CreateChild_text = {0}
_UI_CreateChild_text2 = {1} {0} _UI_CreateChild_text2 = {1} {0}
......
...@@ -2,12 +2,15 @@ Manifest-Version: 1.0 ...@@ -2,12 +2,15 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.framed.iorm.model;singleton:=true Bundle-SymbolicName: org.framed.iorm.model;singleton:=true
Bundle-Version: 1.0.0.qualifier Automatic-Module-Name: org.framed.iorm.model
Bundle-Version: 2.2.0.qualifier
Bundle-ClassPath: . Bundle-ClassPath: .
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: org.framed.iorm.featuremodel;uses:="org.eclipse.emf.ecore,org.eclipse.emf.common.util", Export-Package: org.framed.iorm.featuremodel;
uses:="org.eclipse.emf.ecore,
org.eclipse.emf.common.util",
org.framed.iorm.featuremodel.impl; org.framed.iorm.featuremodel.impl;
uses:="org.eclipse.emf.ecore, uses:="org.eclipse.emf.ecore,
org.eclipse.emf.ecore.impl, org.eclipse.emf.ecore.impl,
......
# #
pluginName = ORM Model pluginName = Object Relation Model
providerName = www.example.org providerName = TU Dresden
...@@ -76,7 +76,7 @@ public class FeaturemodelPackageImpl extends EPackageImpl implements Featuremode ...@@ -76,7 +76,7 @@ public class FeaturemodelPackageImpl extends EPackageImpl implements Featuremode
/** /**
* Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends. * Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends.
* *
* <p>This method is used to initialize {@link FeaturemodelPackage#eINSTANCE} when that field is accessed. * <p>This method is used to initialize {@link FeaturemodelPackage#eINSTANCE} when that field is accessed.
* Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package.
* <!-- begin-user-doc --> * <!-- begin-user-doc -->
...@@ -91,17 +91,17 @@ public class FeaturemodelPackageImpl extends EPackageImpl implements Featuremode ...@@ -91,17 +91,17 @@ public class FeaturemodelPackageImpl extends EPackageImpl implements Featuremode
return (FeaturemodelPackage) EPackage.Registry.INSTANCE.getEPackage(FeaturemodelPackage.eNS_URI); return (FeaturemodelPackage) EPackage.Registry.INSTANCE.getEPackage(FeaturemodelPackage.eNS_URI);
// Obtain or create and register package // Obtain or create and register package
FeaturemodelPackageImpl theFeaturemodelPackage = (FeaturemodelPackageImpl) (EPackage.Registry.INSTANCE Object registeredFeaturemodelPackage = EPackage.Registry.INSTANCE.get(eNS_URI);
.get(eNS_URI) instanceof FeaturemodelPackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) FeaturemodelPackageImpl theFeaturemodelPackage = registeredFeaturemodelPackage instanceof FeaturemodelPackageImpl
: new FeaturemodelPackageImpl()); ? (FeaturemodelPackageImpl) registeredFeaturemodelPackage
: new FeaturemodelPackageImpl();
isInited = true; isInited = true;
// Obtain or create and register interdependencies // Obtain or create and register interdependencies
OrmPackageImpl theOrmPackage = (OrmPackageImpl) (EPackage.Registry.INSTANCE Object registeredPackage = EPackage.Registry.INSTANCE.getEPackage(OrmPackage.eNS_URI);
.getEPackage(OrmPackage.eNS_URI) instanceof OrmPackageImpl OrmPackageImpl theOrmPackage = (OrmPackageImpl) (registeredPackage instanceof OrmPackageImpl ? registeredPackage
? EPackage.Registry.INSTANCE.getEPackage(OrmPackage.eNS_URI) : OrmPackage.eINSTANCE);
: OrmPackage.eINSTANCE);
// Create package meta-data objects // Create package meta-data objects
theFeaturemodelPackage.createPackageContents(); theFeaturemodelPackage.createPackageContents();
......
...@@ -108,7 +108,7 @@ public class OrmPackageImpl extends EPackageImpl implements OrmPackage { ...@@ -108,7 +108,7 @@ public class OrmPackageImpl extends EPackageImpl implements OrmPackage {
/** /**
* Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends. * Creates, registers, and initializes the <b>Package</b> for this model, and for any others upon which it depends.
* *
* <p>This method is used to initialize {@link OrmPackage#eINSTANCE} when that field is accessed. * <p>This method is used to initialize {@link OrmPackage#eINSTANCE} when that field is accessed.
* Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package.
* <!-- begin-user-doc --> * <!-- begin-user-doc -->
...@@ -123,17 +123,18 @@ public class OrmPackageImpl extends EPackageImpl implements OrmPackage { ...@@ -123,17 +123,18 @@ public class OrmPackageImpl extends EPackageImpl implements OrmPackage {
return (OrmPackage) EPackage.Registry.INSTANCE.getEPackage(OrmPackage.eNS_URI); return (OrmPackage) EPackage.Registry.INSTANCE.getEPackage(OrmPackage.eNS_URI);
// Obtain or create and register package // Obtain or create and register package
OrmPackageImpl theOrmPackage = (OrmPackageImpl) (EPackage.Registry.INSTANCE Object registeredOrmPackage = EPackage.Registry.INSTANCE.get(eNS_URI);
.get(eNS_URI) instanceof OrmPackageImpl ? EPackage.Registry.INSTANCE.get(eNS_URI) OrmPackageImpl theOrmPackage = registeredOrmPackage instanceof OrmPackageImpl
: new OrmPackageImpl()); ? (OrmPackageImpl) registeredOrmPackage
: new OrmPackageImpl();
isInited = true; isInited = true;
// Obtain or create and register interdependencies // Obtain or create and register interdependencies
FeaturemodelPackageImpl theFeaturemodelPackage = (FeaturemodelPackageImpl) (EPackage.Registry.INSTANCE Object registeredPackage = EPackage.Registry.INSTANCE.getEPackage(FeaturemodelPackage.eNS_URI);
.getEPackage(FeaturemodelPackage.eNS_URI) instanceof FeaturemodelPackageImpl FeaturemodelPackageImpl theFeaturemodelPackage = (FeaturemodelPackageImpl) (registeredPackage instanceof FeaturemodelPackageImpl
? EPackage.Registry.INSTANCE.getEPackage(FeaturemodelPackage.eNS_URI) ? registeredPackage
: FeaturemodelPackage.eINSTANCE); : FeaturemodelPackage.eINSTANCE);
// Create package meta-data objects // Create package meta-data objects
theOrmPackage.createPackageContents(); theOrmPackage.createPackageContents();
......
...@@ -2,7 +2,7 @@ Manifest-Version: 1.0 ...@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.framed.iorm.transformation.test;singleton:=true Bundle-SymbolicName: org.framed.iorm.transformation.test;singleton:=true
Bundle-Version: 2.0.3 Bundle-Version: 2.2.3
Bundle-ClassPath: . Bundle-ClassPath: .
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin
...@@ -10,8 +10,8 @@ Require-Bundle: org.eclipse.core.runtime, ...@@ -10,8 +10,8 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.ecore;visibility:=reexport, org.eclipse.emf.ecore;visibility:=reexport,
org.framed.iorm.transformation;bundle-version="1.0.0", org.framed.iorm.transformation;bundle-version="1.0.0",
org.junit, org.junit,
org.rosi.crom.metamodel;visibility:=reexport, org.rosi.crom.metamodel;bundle-version="1.0.0";visibility:=reexport,
org.framed.iorm.model;bundle-version="1.0.0";visibility:=reexport, org.framed.iorm.model;bundle-version="2.2.0";visibility:=reexport,
org.eclipse.emf.ecore.xmi, org.eclipse.emf.ecore.xmi,
org.eclipse.compare;bundle-version="3.5.501", org.eclipse.compare;bundle-version="3.5.501",
org.eclipse.emf.compare;bundle-version="3.1.0", org.eclipse.emf.compare;bundle-version="3.1.0",
......
# #
pluginName = Testmodel Model pluginName = Transformation Family Test
providerName = www.example.org providerName = TU Dresden
Manifest-Version: 1.0 Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: Transformation Bundle-Name: Transformation Family
Bundle-SymbolicName: org.framed.iorm.transformation;singleton:=true Bundle-SymbolicName: org.framed.iorm.transformation;singleton:=true
Bundle-Version: 2.0.3 Bundle-Version: 2.2.0
Bundle-Activator: org.framed.iorm.transformation.Activator Bundle-Activator: org.framed.iorm.transformation.Activator
Require-Bundle: org.eclipse.ui, Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime, org.eclipse.core.runtime,
org.eclipse.epsilon.eol.engine, org.eclipse.epsilon.eol.engine,
org.eclipse.epsilon.emc.emf, org.eclipse.epsilon.emc.emf,
org.eclipse.epsilon.eol.dt;bundle-version="1.2.0", org.eclipse.epsilon.eol.dt,
org.eclipse.epsilon.etl.engine, org.eclipse.epsilon.etl.engine,
org.rosi.crom.metamodel;bundle-version="0.1.0" org.rosi.crom.metamodel;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Export-Package: org.framed.iorm.transformation Export-Package: org.framed.iorm.transformation
Bundle-Vendor: TU Dresden
Manifest-Version: 1.0 Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: Ui Bundle-Name: FRaMED SPL
Bundle-SymbolicName: org.framed.iorm.ui;singleton:=true Bundle-SymbolicName: org.framed.iorm.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier Bundle-Version: 2.2.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.framed.iorm.featuremodel;bundle-version="1.0.0", Require-Bundle: org.framed.iorm.featuremodel;bundle-version="1.0.0",
org.framed.iorm.model.edit;visibility:=reexport, org.framed.iorm.model.edit;bundle-version="1.0.0";visibility:=reexport,
de.ovgu.featureide.fm.core;bundle-version="3.3.1", de.ovgu.featureide.fm.core;bundle-version="3.3.1",
de.ovgu.featureide.fm.ui;bundle-version="3.3.2", de.ovgu.featureide.fm.ui;bundle-version="3.3.2",
org.eclipse.graphiti;bundle-version="0.13.2", org.eclipse.graphiti;bundle-version="0.13.2",
...@@ -27,9 +27,10 @@ Require-Bundle: org.framed.iorm.featuremodel;bundle-version="1.0.0", ...@@ -27,9 +27,10 @@ Require-Bundle: org.framed.iorm.featuremodel;bundle-version="1.0.0",
org.eclipse.core.resources;bundle-version="3.11.1";visibility:=reexport, org.eclipse.core.resources;bundle-version="3.11.1";visibility:=reexport,
org.eclipse.ui.workbench, org.eclipse.ui.workbench,
org.eclipse.emf.ecore, org.eclipse.emf.ecore,
org.framed.iorm.editpolicymodel;bundle-version="0.1.0", org.framed.iorm.editpolicymodel;bundle-version="1.0.0",
org.eclipse.osgi org.eclipse.osgi
Import-Package: org.eclipse.graphiti.features;version="0.13.2", Import-Package: org.eclipse.graphiti.features;version="0.13.2",
org.framed.iorm.transformation org.framed.iorm.transformation
Bundle-ClassPath: src/, Bundle-ClassPath: src/,
. .
Bundle-Vendor: TU Dresden
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment