January 2019
Beginner to intermediate
352 pages
8h
English
Gradle is an open source build automation tool that uses scripts written in Groovy or Kotlin DSL. It is supported by the major IDEs, and you can run it using command-line interfaces or through a continuous integration server.
Once installed, you can create a new project or automatically convert an existing Maven project into a Gradle one, by launching the following command from your project's root:
$ gradle init
In order to use Vert.x in a Gradle project, you can create a Gradle file, such as the following one:
plugins { id 'java' id 'application' id 'com.github.johnrengelman.shadow' version '2.0.4'}ext { vertxVersion = '3.5.4' junitJupiterEngineVersion = '5.2.0'}repositories { mavenLocal() jcenter()}group = 'com.packtpub.vertx' ...Read now
Unlock full access