Skip to content

Commit 6e0826d

Browse files
committed
disable goalN, taskN
1 parent b86188c commit 6e0826d

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

org.nodeclipse.enide.gradle/plugin.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@
356356
</extension>
357357

358358

359-
<!-- for gradle task1 @since 0.15 -->
359+
<!-- for gradle task1 @since 0.15
360360
<extension
361361
point="org.eclipse.debug.core.launchConfigurationTypes">
362362
<launchConfigurationType
@@ -381,7 +381,7 @@
381381
id= "org.nodeclipse.enide.gradle.launch.task1.LaunchConfigurationTabGroup"
382382
type= "org.nodeclipse.enide.gradle.launch.task1.LaunchConfigurationType" >
383383
</launchConfigurationTabGroup>
384-
</extension>
384+
</extension>
385385
<extension
386386
point= "org.eclipse.debug.ui.launchShortcuts" >
387387
<shortcut
@@ -412,10 +412,10 @@
412412
</enablement>
413413
</contextualLaunch>
414414
</shortcut>
415-
</extension>
416-
415+
</extension>
416+
-->
417417

418-
<!-- for gradle task2 @since 0.15 -->
418+
<!-- for gradle task2 @since 0.15
419419
<extension
420420
point="org.eclipse.debug.core.launchConfigurationTypes">
421421
<launchConfigurationType
@@ -440,7 +440,7 @@
440440
id= "org.nodeclipse.enide.gradle.launch.task2.LaunchConfigurationTabGroup"
441441
type= "org.nodeclipse.enide.gradle.launch.task2.LaunchConfigurationType" >
442442
</launchConfigurationTabGroup>
443-
</extension>
443+
</extension>
444444
<extension
445445
point= "org.eclipse.debug.ui.launchShortcuts" >
446446
<shortcut
@@ -471,8 +471,8 @@
471471
</enablement>
472472
</contextualLaunch>
473473
</shortcut>
474-
</extension>
475-
474+
</extension>
475+
-->
476476

477477
<!-- for GUI -->
478478
<extension

org.nodeclipse.enide.gradle/src/org/nodeclipse/enide/gradle/preferences/GradlePreferencePage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,12 @@ protected void createFieldEditors() {
9595

9696
gradleOptions = new StringFieldEditor(GradleConstants.GRADLE_OPTIONS, "Gradle options (gradle -h):", getFieldEditorParent());
9797
addField(gradleOptions);
98+
/*
9899
gradleTask1 = new StringFieldEditor(GradleConstants.GRADLE_TASK1, "Gradle task1:", getFieldEditorParent());
99100
addField(gradleTask1);
100101
gradleTask2 = new StringFieldEditor(GradleConstants.GRADLE_TASK2, "Gradle task2:", getFieldEditorParent());
101102
addField(gradleTask2);
103+
*/
102104
gradleOptionDebug = new BooleanFieldEditor(GradleConstants.GRADLE_OPTION_DEBUG,"-d, --debug Log in debug mode (includes normal stacktrace).", getFieldEditorParent());
103105
addField(gradleOptionDebug);
104106
gradleOptionInfo = new BooleanFieldEditor(GradleConstants.GRADLE_OPTION_INFO,"-i, --info Set log level to info.", getFieldEditorParent());

org.nodeclipse.enide.maven/plugin.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</shortcut>
6161
</extension>
6262

63-
<!-- goal1 -->
63+
<!-- goal1
6464
<extension
6565
point="org.eclipse.debug.core.launchConfigurationTypes">
6666
<launchConfigurationType
@@ -85,8 +85,7 @@
8585
id= "org.nodeclipse.enide.maven.launch.goal1.LaunchConfigurationTabGroup"
8686
type= "org.nodeclipse.enide.maven.launch.goal1.LaunchConfigurationType" >
8787
</launchConfigurationTabGroup>
88-
</extension>
89-
<!-- pom.xml run as goal1 -->
88+
</extension>
9089
<extension
9190
point= "org.eclipse.debug.ui.launchShortcuts" >
9291
<shortcut
@@ -118,9 +117,10 @@
118117
</contextualLaunch>
119118
</shortcut>
120119
</extension>
120+
-->
121121

122122

123-
<!-- goal2 -->
123+
<!-- goal2
124124
<extension
125125
point="org.eclipse.debug.core.launchConfigurationTypes">
126126
<launchConfigurationType
@@ -145,8 +145,7 @@
145145
id= "org.nodeclipse.enide.maven.launch.goal2.LaunchConfigurationTabGroup"
146146
type= "org.nodeclipse.enide.maven.launch.goal2.LaunchConfigurationType" >
147147
</launchConfigurationTabGroup>
148-
</extension>
149-
<!-- pom.xml run as goal2 -->
148+
</extension>
150149
<extension
151150
point= "org.eclipse.debug.ui.launchShortcuts" >
152151
<shortcut
@@ -178,6 +177,7 @@
178177
</contextualLaunch>
179178
</shortcut>
180179
</extension>
180+
-->
181181

182182

183183
<!-- jetty:run -->

org.nodeclipse.enide.maven/src/org/nodeclipse/enide/maven/preferences/MavenPreferencePage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,12 @@ protected void createFieldEditors() {
6969

7070
mavenOptions = new StringFieldEditor(MavenConstants.MAVEN_OPTIONS, "Maven options (mvn -h):", getFieldEditorParent());
7171
addField(mavenOptions);
72+
/*
7273
mavenGoal1 = new StringFieldEditor(MavenConstants.MAVEN_GOAL1, "Maven goal1:", getFieldEditorParent());
7374
addField(mavenGoal1);
7475
mavenGoal2 = new StringFieldEditor(MavenConstants.MAVEN_GOAL2, "Maven goal2:", getFieldEditorParent());
7576
addField(mavenGoal2);
77+
*/
7678
mavenOptionShowVersion = new BooleanFieldEditor(MavenConstants.MAVEN_OPTION_SHOW_VERSION,"-V, --show-version Display version information without stopping build", getFieldEditorParent());
7779
addField(mavenOptionShowVersion);
7880
mavenOptionDebug = new BooleanFieldEditor(MavenConstants.MAVEN_OPTION_DEBUG,"-X Debug (Produce execution debug output)", getFieldEditorParent());

0 commit comments

Comments
 (0)