Files
spring-restdocs/spring-restdocs-restassured/build.gradle
2018-08-08 12:27:43 +01:00

16 lines
556 B
Groovy

description = 'Spring REST Docs REST Assured'
dependencies {
compile project(':spring-restdocs-core')
compile 'io.rest-assured:rest-assured'
testCompile 'org.apache.tomcat.embed:tomcat-embed-core:8.5.13'
testCompile 'org.assertj:assertj-core'
testCompile 'org.hamcrest:hamcrest-library'
testCompile 'org.mockito:mockito-core'
testCompile project(path: ':spring-restdocs-core', configuration: 'testArtifacts')
}
test {
jvmArgs "-javaagent:${configurations.jacoco.asPath}=destfile=${buildDir}/jacoco.exec,includes=org.springframework.restdocs.*"
}