Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 61f75bec34aa8a5d7eec94c6ffe710ffe69e3919 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright (c) 2007, 2008 Sonatype, Inc.
  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
-->
<?eclipse version="3.2"?>
<plugin>

  <extension point="org.eclipse.ui.menus">
       <menuContribution
            locationURI="popup:org.eclipse.jdt.ui.refactoring.menu?after=additions">
        <command
            commandId="org.eclipse.m2e.editor.RenameArtifactAction"
            icon="$nl$/icons/m2.gif"
            label="%action.rename.label"
            id="org.eclipse.m2e.editor.RenameArtifactAction">
            <visibleWhen
                  checkEnabled="false">
               <with variable="selection">
                    <count value="1"/>
             		<iterate>
             			<or>
             			  <adapt type="org.eclipse.core.resources.IProject">
             				<test property="org.eclipse.core.resources.projectNature" value="org.eclipse.m2e.core.maven2Nature"/>
                		  </adapt>
                		  <adapt type="org.eclipse.core.resources.IResource">
             				<test property="org.eclipse.core.resources.name" value="pom.xml"/>
                		  </adapt>
                		</or>
             		</iterate>
           		</with>
            </visibleWhen>
         </command>
   		</menuContribution>
  </extension> 
  
  <extension
		point="org.eclipse.ui.commands">
	<command
			id="org.eclipse.m2e.editor.RenameArtifactAction"
			name="%action.rename.label"
			defaultHandler="org.eclipse.m2e.refactoring.rename.RenameArtifactHandler"/>	
  </extension> 
   
  <extension point="org.eclipse.ui.popupMenus">
     
     <!-- actions in pom editor -->
     <objectContribution
           id="org.eclipse.m2e.refactoring.exclude.artifactContributor"
           objectClass="org.apache.maven.artifact.Artifact"
           adaptable="true">
        <action id="org.eclipse.m2e.projectMenu.action"
              class="org.eclipse.m2e.refactoring.exclude.DependencyExcludeAction"
              enablesFor="+"
              icon="icons/exclude.gif"
              label="%action.exclude1.label"
              menubarPath="additions"/>
     </objectContribution>

     <objectContribution
           id="org.eclipse.m2e.refactoring.exclude.dependencyContributorAether"
           objectClass="org.sonatype.aether.graph.DependencyNode"
           adaptable="true">
        <action id="org.eclipse.m2e.projectMenu.action"
            class="org.eclipse.m2e.refactoring.exclude.DependencyExcludeAction"
            enablesFor="+"
            icon="icons/exclude.gif"
            label="%action.exclude3.label"
            menubarPath="additions"/>
     </objectContribution>

     <objectContribution
           id="org.eclipse.m2e.refactoring.set.dependencyContributorAether"
           objectClass="org.sonatype.aether.graph.DependencyNode"
           adaptable="true">
        <action id="org.eclipse.m2e.projectMenu.depSetAction"
            class="org.eclipse.m2e.refactoring.dependencyset.DependencySetAction"
            enablesFor="+"
            icon="icons/exclude.gif"
            label="Lock Transitive Dependency Version..."
            menubarPath="additions"/>
         <enablement>
           	<test property="org.eclipse.m2e.isTransitiveDependencyTreeNode"/>
         </enablement>
            
     </objectContribution>
     
     
       <objectContribution id="org.eclipse.m2e.refactoring.DependencyExclude"
                          objectClass="org.eclipse.jdt.core.IPackageFragmentRoot"
                          adaptable="true">
         <action id="org.eclipse.m2e.refactoring.DependencyExclude"
                 class="org.eclipse.m2e.refactoring.exclude.DependencyExcludeAction"
                 label="%action.exclude3.label"
                 icon="icons/exclude.gif"
                 style="push"
                 menubarPath="org.eclipse.m2e.classpathMenu/open"
                 enablesFor="+"/>
         <enablement>
           	<test property="org.eclipse.m2e.hasArtifactKey"/>
         </enablement>
      </objectContribution>
      <objectContribution id="org.eclipse.m2e.refactoring.DependencyExclude2"
           objectClass="org.eclipse.jdt.internal.ui.packageview.ClassPathContainer$RequiredProjectWrapper"
                          adaptable="true">
         <action id="org.eclipse.m2e.refactoring.DependencyExclude"
                 class="org.eclipse.m2e.refactoring.exclude.DependencyExcludeAction"
                 label="%action.exclude3.label"
                 icon="icons/exclude.gif"
                 style="push"
                 menubarPath="org.eclipse.m2e.classpathMenuWrapper/open"
                 enablesFor="+"/>
         <enablement>
           	<test property="org.eclipse.m2e.hasArtifactKey"/>
         </enablement>
      </objectContribution> 
       
  </extension>
  
</plugin>

Back to the top