Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.compare/plugin.xml')
-rw-r--r--plugins/org.eclipse.emf.cdo.compare/plugin.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.compare/plugin.xml b/plugins/org.eclipse.emf.cdo.compare/plugin.xml
index 0495b2fa77..477a8c90a3 100644
--- a/plugins/org.eclipse.emf.cdo.compare/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.compare/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
- Copyright (c) 2021 Eike Stepper (Loehne, Germany) and others.
+ Copyright (c) 2021, 2022 Eike Stepper (Loehne, 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
@@ -19,4 +19,21 @@
uri="http://www.eclipse.org/emf/compare"/>
</extension>
+ <extension point="org.eclipse.emf.compare.rcp.matchEngine">
+ <engineFactory
+ class="org.eclipse.emf.cdo.compare.CDOCompare$CDOMatchEngine$Factory"
+ description="A CDO-specific match engine"
+ label="CDO Match Engine"
+ ranking="10"/>
+ </extension>
+
+ <extension point="org.eclipse.emf.compare.rcp.diffEngine">
+ <descriptor
+ id="org.eclipse.emf.compare.rcp.cdo.diffEngine"
+ description="A diff engine that creates and uses CDO-specific feature filters"
+ impl="org.eclipse.emf.cdo.compare.CDOCompare$CDODiffEngine"
+ label="CDO Diff Engine"
+ ranking="200"/>
+ </extension>
+
</plugin>

Back to the top