fabric8io / vertx-maven-plugin

Vert.x Maven Plugin - moved to https://github.com/reactiverse/vertx-maven-plugin
https://github.com/reactiverse/vertx-maven-plugin
Apache License 2.0
25 stars 5 forks source link

appId not used in vertx:run #121

Closed nimo23 closed 7 years ago

nimo23 commented 7 years ago

I use <appId>my-app</appId>. However, it does only work for vertx:start and not for vertx:run. vertx:run does generate a uuid instead of taking the appId "my-app".

cescoffier commented 7 years ago

yes, it's the expected behavior.

vertx:run launches they application in "redeploy" mode (if redeploy is set to true) or in frontend (so no vertx.id in this case).

The application id is only used as an admin tool to list the running vert.x application.

nimo23 commented 7 years ago

Okay, "vertx:run" starts in "foreground-mode", so no need for custom appId.