We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82981a1 commit cf6eed9Copy full SHA for cf6eed9
jgiven-spock/build.gradle
@@ -9,7 +9,10 @@ description = "Module for writing JGiven tests with Spock"
9
dependencies {
10
api project(':jgiven-junit')
11
implementation 'org.codehaus.groovy:groovy:2.5.23'
12
- implementation 'org.spockframework:spock-core:1.3-groovy-2.5'
+ implementation ('org.spockframework:spock-core:1.3-groovy-2.5'){
13
+ exclude(group: 'junit', module: 'junit')
14
+ }
15
+ implementation 'junit:junit:4.13.2'
16
17
testImplementation project(':jgiven-html5-report')
18
}
0 commit comments