forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
18 lines (17 loc) · 944 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dependencies {
api project(path: ":core:support", configuration: 'default'),
project(path: ":provider", configuration: 'default')
compile "org.junit.jupiter:junit-jupiter-api:${project.junit5Version}"
implementation "org.slf4j:slf4j-api:${project.slf4jVersion}"
testRuntime "ch.qos.logback:logback-classic:${project.logbackVersion}"
testCompile 'ru.lanwen.wiremock:wiremock-junit5:1.1.1'
testCompile 'com.github.tomakehurst:wiremock:2.19.0'
testRuntime "org.junit.jupiter:junit-jupiter-engine:${project.junit5Version}"
testRuntime "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testCompile "org.codehaus.groovy:groovy:${project.groovyVersion}"
testCompile "org.codehaus.groovy:groovy-json:${project.groovyVersion}"
testCompile('org.spockframework:spock-core:2.0-M4-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testRuntime "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
}