File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/test/groovy/org/ajoberstar/gradle/git/tasks Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ dependencies {
2626 compile gradleApi()
2727 compile ' org.eclipse.jgit:org.eclipse.jgit:2.0.0.201206130900-r'
2828 compile ' org.eclipse.jgit:org.eclipse.jgit.ui:2.0.0.201206130900-r'
29+ testCompile( ' org.spockframework:spock-core:0.7-groovy-1.8' ) { exclude group : ' org.codehaus.groovy' }
30+ testCompile ' junit:junit:4.10'
2931}
3032
3133githubPages {
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ public class GitBranchCreateTest extends Specification {
117117 def ' when create branch wish existing name w/ `force` then OK' () {
118118 given :
119119 git. branchCreate(). setName(" branch1" ). call()
120- ; project. tasks. add(name : ' branchCreate' , type : GitBranchCreate ) {
120+ project. tasks. add(name : ' branchCreate' , type : GitBranchCreate ) {
121121 branchName = ' branch1'
122122 force = true
123123 }
You can’t perform that action at this time.
0 commit comments