mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 11:39:14 +00:00
15 lines
343 B
Groovy
15 lines
343 B
Groovy
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")
|
|
implementation("org.springframework:spring-core")
|
|
}
|