Files
spring-restdocs/spring-restdocs-restassured/build.gradle
2020-07-13 10:53:28 +01:00

23 lines
668 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.*"
}
matrixTest {
restAssured {
group = 'io.rest-assured'
versions = ['4.0.0', '4.1.2', '4.2.0', '4.3.1']
}
}