Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.9
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
Hi,
Attached is a patch which makes the following changes to the eclipse:external-tools-21 goal:
1. Makes default action to run goal against project.xml in the current project.
2. Makes default to refresh project containing the selected resource
3. Removes code to add each entry to favorites list, because they fill up the list and makes user have to scroll to see the bottom of the external tools menu.
I think these would be much more intuitive and convenient defaults for the majority of the plugin users.
Thanks,
Chad
Index: eclipse/src/plugin-resources/templates/launch.jelly
===================================================================
RCS file: /home/cvspublic/maven-plugins/eclipse/src/plugin-resources/templates/launch.jelly,v
retrieving revision 1.4
diff -u -r1.4 launch.jelly
— eclipse/src/plugin-resources/templates/launch.jelly 4 Mar 2004 18:04:37 -0000 1.4
+++ eclipse/src/plugin-resources/templates/launch.jelly 1 Feb 2005 06:55:58 -0000
@@ -19,13 +19,17 @@
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramLaunchConfigurationType">
<stringAttribute
- key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="-e -p $$
{resource_name}
$
{goal}"/>
+ key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="-e -p project.xml ${goal}"/>
{project}"/>
<stringAttribute
key="org.eclipse.ui.externaltools.ATTR_REFRESH_SCOPE" value="$$
+ <stringAttribute
+ key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="$${project}"/>
+ <!-- don't add favorites, they overfill the menu
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
<listEntry value="org.eclipse.ui.externaltools.launchGroup"/>
</listAttribute>
+ -->
<stringAttribute - key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="$$
{container_loc}
"/>
{project_loc}
+ key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="$$"/>
{tool.loc}
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="$"/>
</launchConfiguration>