forked from pact-foundation/pact-jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
22 lines (21 loc) · 1.38 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
dependencies {
api project(':provider:junit')
implementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.5.3'
implementation group: 'org.springframework', name: 'spring-webmvc', version: '5.3.9'
implementation group: 'org.springframework', name: 'spring-webflux', version: '5.3.9'
implementation group: 'org.springframework', name: 'spring-test', version: '5.3.9'
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version: '2.10.2'
runtimeOnly group: 'org.synchronoss.cloud', name: 'nio-multipart-parser', version: '1.1.0'
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation 'javax.mail:mail:1.5.0-b01'
implementation 'org.apache.commons:commons-collections4:4.4'
testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.5.3'
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${project.junit5Version}"
testImplementation "org.codehaus.groovy:groovy:${project.groovyVersion}"
testImplementation('org.spockframework:spock-core:2.0-groovy-3.0') {
exclude group: 'org.codehaus.groovy'
}
testRuntimeOnly "net.bytebuddy:byte-buddy:${project.bytebuddyVersion}"
}