24 lines
489 B
Groovy
24 lines
489 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
id "optional-dependencies"
|
|
}
|
|
|
|
description = "Spring REST Docs MockMvc"
|
|
|
|
dependencies {
|
|
api(project(":spring-restdocs-core"))
|
|
api("org.springframework:spring-webmvc")
|
|
api("org.springframework:spring-test")
|
|
|
|
implementation("jakarta.servlet:jakarta.servlet-api")
|
|
|
|
internal(platform(project(":spring-restdocs-platform")))
|
|
|
|
testImplementation(testFixtures(project(":spring-restdocs-core")))
|
|
}
|
|
|
|
tasks.named("test") {
|
|
useJUnitPlatform()
|
|
}
|