Skip to main content
summaryrefslogtreecommitdiffstats
blob: bff39b7f1f1b35aa82450c854f6e0caf14596d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
	Copyright (c) 2012 Eike Stepper (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
-->

<plugin>

   <extension
         point="org.eclipse.ui.popupMenus">
      <objectContribution
            adaptable="true"
            id="org.eclipse.emf.cdo.releng.projectcopycontribution1"
            objectClass="org.eclipse.core.resources.IProject">
         <menu
               id="org.eclipse.emf.cdo.releng"
               label="CDO Release Engineering"
               path="additions">
            <separator
                  name="group1">
            </separator>
         </menu>
         <action
               class="org.eclipse.emf.cdo.releng.projectcopy.CopyProjectAction"
               enablesFor="1"
               id="org.eclipse.emf.cdo.releng.CopyProjectAction"
               label="Copy Project..."
               menubarPath="org.eclipse.emf.cdo.releng/group1"
               style="push">
         </action>
      </objectContribution>
   </extension>

</plugin>

Back to the top