Files
spring-boot/spring-boot-project/spring-boot-tools/spring-boot-loader/build.gradle
Phillip Webb 17df773913 Reduce number of test dependencies
Reduce the number of direct test dependencies and instead rely on
transitive test support dependencies.
2025-06-13 20:06:16 -07:00

23 lines
551 B
Groovy

plugins {
id "java-library"
id "org.springframework.boot.deployed"
}
description = "Spring Boot Loader"
dependencies {
compileOnly("org.springframework:spring-core")
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
testRuntimeOnly("ch.qos.logback:logback-classic")
testRuntimeOnly("org.bouncycastle:bcprov-jdk18on:1.78.1")
testRuntimeOnly("org.springframework:spring-webmvc")
}
tasks.configureEach {
if ("checkArchitectureMain".equals(it.name)) {
prohibitObjectsRequireNonNull = false
}
}