Files
spring-restdocs/spring-restdocs-mockmvc/build.gradle
Andy Wilkinson c7bde714d6 Migrate tests to JUnit 5
Closes gh-959
2025-06-03 16:47:20 +01:00

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()
}