Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/misc/org.eclipse.papyrus.infra.sync/plugin.xml')
-rw-r--r--plugins/infra/misc/org.eclipse.papyrus.infra.sync/plugin.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/infra/misc/org.eclipse.papyrus.infra.sync/plugin.xml b/plugins/infra/misc/org.eclipse.papyrus.infra.sync/plugin.xml
new file mode 100644
index 00000000000..28900bbab26
--- /dev/null
+++ b/plugins/infra/misc/org.eclipse.papyrus.infra.sync/plugin.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<!--
+ Copyright (c) 2015 Christian W. Damus 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:
+ Christian W. Damus - Initial API and implementation
+
+-->
+<plugin>
+ <extension-point id="triggers" name="Synchronization Triggers" schema="schema/triggers.exsd"/>
+ <extension
+ point="org.eclipse.papyrus.infra.core.service">
+ <service
+ classname="org.eclipse.papyrus.infra.sync.internal.SyncService"
+ description="The general-purpose synchronization service"
+ id="org.eclipse.papyrus.infra.sync.service.ISyncService"
+ priority="10"
+ startKind="lazy">
+ <dependsOn
+ serviceKeyRef="org.eclipse.emf.transaction.TransactionalEditingDomain">
+ </dependsOn>
+ </service>
+ </extension>
+
+</plugin>

Back to the top