Files
spring-restdocs/spring-restdocs-restassured/build.gradle
2021-04-28 20:59:20 +01:00

31 lines
812 B
Groovy

plugins {
id "java-library"
id "matrixtest"
id "maven-publish"
}
description = "Spring REST Docs REST Assured"
dependencies {
api(project(":spring-restdocs-core"))
api("io.rest-assured:rest-assured")
implementation("org.springframework:spring-web")
internal(platform(project(":spring-restdocs-platform")))
testImplementation(project(path: ":spring-restdocs-core", configuration: "testArtifacts"))
testImplementation("com.fasterxml.jackson.core:jackson-databind")
testImplementation("org.apache.tomcat.embed:tomcat-embed-core:8.5.13")
testImplementation("org.assertj:assertj-core")
testImplementation("org.hamcrest:hamcrest-library")
testImplementation("org.mockito:mockito-core")
}
matrixTest {
restAssured {
group = "io.rest-assured"
versions = ["4.0.0", "4.1.2", "4.2.0", "4.3.1"]
}
}