Vert.x
Hello world
plugins {
id 'java'
id 'application'
}
ext {
vertxVersion = '3.5.0'
}
repositories {
mavenLocal()
jcenter()
}
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '1.8'
dependencies {
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-unit:$vertxVersion"
}
mainClassName = 'com.example.demo.App'
task wrapper(type: Wrapper) {
gradleVersion = '4.0'
}Last updated