Skip to content

Commit

Permalink
Tidy up the test dependencies.
Browse files Browse the repository at this point in the history
Just use the JUnit provided by Gradle.
  • Loading branch information
ldaley committed Feb 8, 2012
1 parent 41e4a66 commit 2feba81
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ repositories {
dependencies {
groovy localGroovy()
compile gradleApi()
compile 'com.google.javascript:closure-compiler:r1592'
testCompile 'org.spockframework:spock-core:0.6-groovy-1.8-SNAPSHOT'
compile ('com.google.javascript:closure-compiler:r1592') {
exclude module: "junit"
}
testCompile ('org.spockframework:spock-core:0.6-groovy-1.8-SNAPSHOT') {
exclude module: "junit-dep"
exclude module: "groovy-all"
}

}

Expand Down

0 comments on commit 2feba81

Please sign in to comment.