Step 1 Initially setting up gradle and create Vert x hello world Microservices with Vertx
Step 1 Initially setting up gradle and create Vert x hello world Microservices with Vertx Initially setting up gradle and vert.x. We will expand in this script, but it is easier to understand in its infancy. We are using John Rengelmans Shadow Jar Plugin which is similar to the Maven which is similar to Maven Shade plugin but for Gradle and is faster than the Gradle built-in fat jar. I am not sure how we will do the final deploy. This is a step down the road. The direction might change. At this point the gradle build file is pretty basic. Gradle build file plugins { id java id application id com.github.johnrengelman.shadow version 1.2.2 id idea } group rickhigh version 1.0-SNAPSHOT idea { project { languageLevel = 1.8 } } repositories { mavenCentral() maven { url = http://oss.sonatype.org/content/repositories/snapshots/ } mavenLocal() /* Just in case we want to use local artifacts that we build locally. */ } sourceCompatibility = 1.8 mainClassName =...