Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Fluegge2010-05-14 18:29:06 +0000
committerMartin Fluegge2010-05-14 18:29:06 +0000
commit667681a721deb8be749a7a4af54a9212201d0a72 (patch)
treeb0eb75a203c94d245a969e08c0ca21f1c56d00c4 /plugins/org.eclipse.emf.cdo.dawn.util
parentbfa49a938e62065a7ce9762c02a327d2d2d90d4e (diff)
downloadcdo-667681a721deb8be749a7a4af54a9212201d0a72.tar.gz
cdo-667681a721deb8be749a7a4af54a9212201d0a72.tar.xz
cdo-667681a721deb8be749a7a4af54a9212201d0a72.zip
[308232] [Dawn] Develop collaborative support for GMF on CDO
https://bugs.eclipse.org/bugs/show_bug.cgi?id=308232
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.dawn.util')
-rw-r--r--plugins/org.eclipse.emf.cdo.dawn.util/META-INF/MANIFEST.MF41
-rw-r--r--plugins/org.eclipse.emf.cdo.dawn.util/build.properties16
2 files changed, 37 insertions, 20 deletions
diff --git a/plugins/org.eclipse.emf.cdo.dawn.util/META-INF/MANIFEST.MF b/plugins/org.eclipse.emf.cdo.dawn.util/META-INF/MANIFEST.MF
index 849089feb7..af4031b4a8 100644
--- a/plugins/org.eclipse.emf.cdo.dawn.util/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.emf.cdo.dawn.util/META-INF/MANIFEST.MF
@@ -4,26 +4,27 @@ Bundle-Name: %providerName
Bundle-SymbolicName: org.eclipse.emf.cdo.dawn.util
Bundle-Version: 0.2.0.qualifier
Bundle-Activator: org.eclipse.emf.cdo.dawn.util.Activator
-Require-Bundle: org.eclipse.ui,
- org.eclipse.core.runtime,
- org.eclipse.net4j.tcp;bundle-version="3.0.0",
- org.eclipse.emf.cdo;bundle-version="3.0.0",
- org.eclipse.emf;bundle-version="2.5.0",
- org.eclipse.emf.cdo.net4j;bundle-version="3.0.0",
- org.eclipse.gmf.runtime.common.core,
- org.eclipse.gmf.runtime.common.ui,
- org.eclipse.gmf.runtime.diagram.core,
- org.eclipse.gmf.runtime.diagram.ui,
- org.eclipse.gmf.runtime.diagram.ui.actions,
- org.eclipse.gmf.runtime.emf.core,
- org.eclipse.gmf.runtime.notation,
- org.eclipse.gmf.runtime.notation.edit,
- org.eclipse.gmf.runtime.notation.providers,
- org.eclipse.gmf.runtime.diagram.ui.resources.editor,
- org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide
+Require-Bundle: org.eclipse.ui;bundle-version="[3.6.0,4.0.0)",
+ org.eclipse.core.runtime;bundle-version="[3.6.0,4.0.0)",
+ org.eclipse.net4j.tcp;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.emf.cdo;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.emf;bundle-version="[2.6.0,3.0.0)",
+ org.eclipse.emf.cdo.net4j;bundle-version="[3.0.0,4.0.0)",
+ org.eclipse.gmf.runtime.common.core;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.common.ui;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.diagram.core;bundle-version="[1.3.0,2.0.0)",
+ org.eclipse.gmf.runtime.diagram.ui;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.diagram.ui.actions;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.emf.core;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.notation;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.notation.edit;bundle-version="[1.4.0,2.0.0)",
+ org.eclipse.gmf.runtime.notation.providers;bundle-version="[1.3.0,2.0.0)",
+ org.eclipse.gmf.runtime.diagram.ui.resources.editor;bundle-version="[1.3.0,2.0.0)",
+ org.eclipse.gmf.runtime.diagram.ui.resources.editor.ide;bundle-version="[1.2.0,2.0.0)"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Export-Package: org.eclipse.emf.cdo.dawn.util,
- org.eclipse.emf.cdo.dawn.util.connection
-Import-Package: org.eclipse.emf.transaction
+Export-Package: org.eclipse.emf.cdo.dawn.internal.util.bundle;version="0.2.0",
+ org.eclipse.emf.cdo.dawn.util;version="0.2.0",
+ org.eclipse.emf.cdo.dawn.util.connection;version="0.2.0",
+ org.eclipse.emf.cdo.dawn.util.exceptions;version="0.2.0"
Bundle-Vendor: %providerName
diff --git a/plugins/org.eclipse.emf.cdo.dawn.util/build.properties b/plugins/org.eclipse.emf.cdo.dawn.util/build.properties
index 8951ab621e..8a9efa44ff 100644
--- a/plugins/org.eclipse.emf.cdo.dawn.util/build.properties
+++ b/plugins/org.eclipse.emf.cdo.dawn.util/build.properties
@@ -1,5 +1,21 @@
+# Copyright (c) 2010 Martin Fluegge (Berlin, Germany) and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# Eike Stepper - initial API and implementation
+
+# NLS_MESSAGEFORMAT_VAR
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
+ plugin.xml,\
+ about.html,\
+ copyright.txt,\
+ license.html,\
.options
+src.includes = about.html,\
+ copyright.txt

Back to the top