-
-
Notifications
You must be signed in to change notification settings - Fork 483
/
Copy pathbuild.gradle
35 lines (30 loc) · 1.16 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
}
description = 'Pact-JVM - Junit 5 Extension Provider test support library'
group = 'au.com.dius.pact.provider'
dependencies {
api project(':provider')
api project(':core:support')
api project(':core:pactbroker')
api project(':core:model')
api 'org.junit.jupiter:junit-jupiter-api:5.9.2'
implementation 'org.slf4j:slf4j-api'
implementation('io.pact.plugin.driver:core') {
exclude group: 'au.com.dius.pact.core'
}
implementation 'org.slf4j:slf4j-api'
implementation 'com.michael-bull.kotlin-result:kotlin-result:1.1.14'
testRuntimeOnly 'ch.qos.logback:logback-classic'
testImplementation 'ru.lanwen.wiremock:wiremock-junit5:1.3.1'
testImplementation 'com.github.tomakehurst:wiremock-jre8'
testImplementation 'org.apache.groovy:groovy'
testImplementation 'org.apache.groovy:groovy-json'
testRuntimeOnly 'net.bytebuddy:byte-buddy'
testImplementation('com.github.javafaker:javafaker:1.0.2') {
exclude group: 'org.yaml'
}
testImplementation 'org.yaml:snakeyaml:1.33'
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'org.mockito:mockito-inline:2.28.2'
}