Files
spring-restdocs/spring-restdocs-webtestclient/build.gradle
2017-10-30 09:58:07 +00:00

17 lines
604 B
Groovy

description = 'Spring REST Docs WebFlux'
dependencies {
compile 'org.springframework:spring-test'
compile 'org.springframework:spring-webflux'
compile project(':spring-restdocs-core')
testCompile 'org.mockito:mockito-core'
testCompile 'org.hamcrest:hamcrest-library'
testCompile project(path: ':spring-restdocs-core', configuration: 'testArtifacts')
testRuntime 'org.springframework:spring-context'
testRuntime 'org.synchronoss.cloud:nio-multipart-parser'
}
test {
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.exec,includes=org.springframework.restdocs.*"
}