Created
January 29, 2010 04:03
-
-
Save RobertFischer/289437 to your computer and use it in GitHub Desktop.
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
usePlugin 'groovy' | |
usePlugin(com.smokejumperit.gradle.CukePlugin) | |
buildscript { | |
repositories { | |
mavenRepo urls:'http://repo.smokejumperit.com' | |
} | |
dependencies { | |
classpath 'com.smokejumperit:gradle-plugins:0.5.1' | |
} | |
} | |
repositories { | |
mavenCentral() | |
mavenRepo urls:"http://fest.googlecode.com/svn/trunk/fest/m2/repository/" | |
} | |
dependencies { | |
cuke "fest:fest-swing:1.1" | |
cuke files("$buildDir/classes/main") { | |
builtBy 'classes' | |
} | |
groovy "org.codehaus.groovy:groovy:1.6.7" | |
} | |
task checkGradle << { | |
println "OK" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment