Files
spring-restdocs/spring-restdocs-mockmvc/build.gradle
Andy Wilkinson 4223f70102 Upgrade to Spring Framework 6 and Jakarta EE 9
Closes gh-750
Closes gh-748
2021-11-17 11:18:00 +00:00

28 lines
802 B
Groovy

plugins {
id "io.spring.compatibility-test" version "0.0.1"
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")))
testImplementation("junit:junit")
testImplementation("org.assertj:assertj-core")
testImplementation("org.hamcrest:hamcrest-library")
testImplementation("org.mockito:mockito-core")
testImplementation("org.springframework.hateoas:spring-hateoas")
testRuntimeOnly("commons-logging:commons-logging:1.2")
}