I'm working on a project called vertx-bigapp-skeleton to make the Vert.x deployment easier.
For that, I decided to create a file called META-INF/vertx.verticle
in the verticles (Maven submodules of the example project).
If I compile and run the project with Maven (mvn clean package && java -jar server/target/application.jar
) everything works fine and the Maven shade plugin merge's the vertx.verticle
file correctly.
I work with Eclipse and if I run the example server artifact it just finds the vertx.verticle
file from the healh verticle.
It is possible to merge this META-INF/vertx.verticles
file in eclipse too, so that I can develop and debug in Eclipse?
The Loader for the vertx.verticles files can be found here: https://github.com/marcelalburg/vertx-bigapp-skeleton/blob/master/src/main/java/com/weeaar/vertxwebconfig/service/ServiceLoader.java
Thanks for your help