forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
26 lines (22 loc) · 1.24 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
plugins {
id 'au.com.dius.pact.kotlin-library-conventions'
}
description = 'Pact-JVM - Pact Provider Spring/JUnit runner'
group = 'au.com.dius.pact.provider'
dependencies {
api project(':provider:junit')
implementation 'org.apache.groovy:groovy'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.5.14'
implementation group: 'org.springframework', name: 'spring-webmvc', version: '5.3.19'
implementation group: 'org.springframework', name: 'spring-webflux', version: '5.3.19'
implementation group: 'org.springframework', name: 'spring-test', version: '5.3.19'
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version: '2.13.4'
runtimeOnly group: 'org.synchronoss.cloud', name: 'nio-multipart-parser', version: '1.1.0'
implementation 'org.apache.commons:commons-lang3'
implementation 'javax.mail:mail:1.5.0-b01'
implementation 'org.apache.commons:commons-collections4'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.5.14'
testImplementation 'org.apache.groovy:groovy'
testRuntimeOnly 'net.bytebuddy:byte-buddy'
}