Created
June 17, 2014 12:18
-
-
Save spikeheap/26df1a74a1a81a32443f to your computer and use it in GitHub Desktop.
Sample Gradle buildfile for Groovy/IntelliJ support
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' | |
| 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