You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eclipse-extensions/org.springframework.ide.eclipse.boot.launch/src/org/springframework/ide/eclipse/boot/launch/AbstractBootLaunchConfigurationDelegate.java
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,9 @@ public abstract class AbstractBootLaunchConfigurationDelegate extends AdvancedJa
Copy file name to clipboardExpand all lines: eclipse-extensions/org.springframework.ide.eclipse.boot.launch/src/org/springframework/ide/eclipse/boot/launch/BootLaunchConfigurationDelegate.java
+20-21Lines changed: 20 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -172,34 +172,17 @@ public void launch(ILaunchConfiguration conf, String mode,
//shortcut for case where no boot-specific customizations are specified.
181
-
returnsuper.getProgramArguments(conf);
182
-
}
183
-
ArrayList<String> args = newArrayList<>();
184
175
if (useThinWrapper(conf)) {
176
+
ArrayList<String> args = newArrayList<>();
185
177
StringrealMain = super.getMainTypeName(conf);
186
178
//--thin.main=com.example.SampleApplication
187
179
// --thin.archive=target/classes - the first one is the main class of the boot app, as already configured in the boot launch config, the second one points to the compiled classes (the entry that was on the regular classpath before without the maven dependencies)
Copy file name to clipboardExpand all lines: eclipse-extensions/org.springframework.ide.eclipse.boot.launch/src/org/springframework/ide/eclipse/boot/launch/devtools/BootDevtoolsClientLaunchConfigurationDelegate.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -69,14 +69,14 @@ public String getMainTypeName(ILaunchConfiguration configuration) throws CoreExc
0 commit comments