2021-07-16 00:37:43 +08:00
|
|
|
plugins {
|
|
|
|
id "java-library"
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Gradle Testing Support"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly("org.junit.jupiter:junit-jupiter")
|
|
|
|
|
|
|
|
implementation(gradleTestKit())
|
|
|
|
implementation("io.spring.gradle:dependency-management-plugin")
|
|
|
|
implementation("org.assertj:assertj-core")
|
2024-09-18 03:06:23 +08:00
|
|
|
implementation("org.springframework:spring-core")
|
2021-07-16 00:37:43 +08:00
|
|
|
}
|