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
{{ message }}
This repository was archived by the owner on Jan 10, 2020. It is now read-only.
@Command(name = "run", description = "This command runs the application from spring boot embedded tomcat", context = ContextType.PROJECT)
161
-
@Parameters(values = { @Parameter(name = "port", description = "Port to start Spring boot app (port 8081 by default)", optional = true) })
172
+
@Parameters(values = {
173
+
@Parameter(name = "port", description = "Port to start Spring boot app (port 8081 by default)", optional = true) })
162
174
publicvoidrun(Stringport) {
163
175
164
176
if (!this.projectInfo.isPresent()) {
@@ -246,7 +258,8 @@ public void build() {
246
258
* @param path server project path
247
259
*/
248
260
@Command(name = "deploy", description = "This command will deploy the server project on tomcat", context = ContextType.PROJECT)
249
-
@Parameters(values = { @Parameter(name = "tomcatpath", description = "Path to tomcat folder (if not provided and the project is in a Devonfw distribution the default software/tomcat folder will be used)", optional = true, inputType = @InputType(name = InputTypeNames.PATH)) })
261
+
@Parameters(values = {
262
+
@Parameter(name = "tomcatpath", description = "Path to tomcat folder (if not provided and the project is in a Devonfw distribution the default software/tomcat folder will be used)", optional = true, inputType = @InputType(name = InputTypeNames.PATH)) })
250
263
publicvoiddeploy(Stringtomcatpath) {
251
264
252
265
Stringpath;
@@ -272,9 +285,9 @@ public void deploy(String tomcatpath) {
0 commit comments