-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added gradle build #32
base: master
Are you sure you want to change the base?
Conversation
Initial idea implementation support for gradle build
step-4/build.gradle
Outdated
@@ -0,0 +1,80 @@ | |||
buildscript { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could be using the simpler plugins { ... }
block since there are no special dependencies.
step-4/build.gradle
Outdated
} | ||
|
||
|
||
apply plugin: 'java' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Vert.x Gradle plugin already applies it.
step-4/build.gradle
Outdated
group = 'io.vertx' | ||
version = '1.3.0-SNAPSHOT' | ||
|
||
description = """""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
step-4/build.gradle
Outdated
|
||
description = """""" | ||
|
||
sourceCompatibility = 1.8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Already done by the Vert.x plugin.
step-4/build.gradle
Outdated
} | ||
|
||
dependencies { | ||
compile "io.vertx:vertx-core:$vertVersion" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, see the Vert.x plugin documentation, it simplifies dependencies management.
Initial idea implementation support for gradle build