Skip to content

Instantly share code, notes, and snippets.

@spikeheap
Created June 17, 2014 12:18
Show Gist options
  • Select an option

  • Save spikeheap/26df1a74a1a81a32443f to your computer and use it in GitHub Desktop.

Select an option

Save spikeheap/26df1a74a1a81a32443f to your computer and use it in GitHub Desktop.
Sample Gradle buildfile for Groovy/IntelliJ support
apply plugin: 'groovy'
apply plugin: 'idea'
project.description = 'something awesome'
project.version = "1.0.0-SNAPSHOT"
project.group = "uk.co.ryanbrooks.example"
repositories {
mavenLocal()
jcenter()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.1'
compile "org.spockframework:spock-core:0.7-groovy-2.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment