Created
May 16, 2012 08:12
-
-
Save robfletcher/2708607 to your computer and use it in GitHub Desktop.
Template Gradle build for projects using Groovy with embedded vert.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'groovy' | |
repositories { | |
mavenCentral() | |
// vertxHome must be defined in gradle.properties | |
flatDir { dirs "${vertxHome}/lib/jars" } | |
} | |
dependencies { | |
groovy 'org.codehaus.groovy:groovy:1.8.6' | |
testCompile 'org.spockframework:spock-core:0.6-groovy-1.8' | |
// jars from ${vertxHome}/lib/jars | |
compile ':vert.x-core' | |
runtime ':netty' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment