Skip to content

Instantly share code, notes, and snippets.

@darylteo
Created January 30, 2013 15:03
Show Gist options
  • Save darylteo/4673855 to your computer and use it in GitHub Desktop.
Save darylteo/4673855 to your computer and use it in GitHub Desktop.
Vertx Gradle include
apply from: "vertx.gradle"
apply plugin: 'java'
vertx {
version = "1.3.1-final"
}
build {
dependsOn vertx
}
class VertxTask extends DefaultTask {
def String version = '1.3.1-final'
def String runtime = 'vertx'
}
task vertx(type: VertxTask) << {
println "Version: $version"
dependencies {
compile "org.vert-x:vertx-core:${version}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment