2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java-library"
|
|
|
|
id "org.springframework.boot.deployed"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2023-09-19 04:41:31 +08:00
|
|
|
description = "Spring Boot Classic Loader"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
compileOnly("org.springframework:spring-core")
|
2020-01-14 20:15:53 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
|
|
testImplementation("org.awaitility:awaitility")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
testImplementation("org.mockito:mockito-core")
|
|
|
|
testImplementation("org.springframework:spring-test")
|
2022-10-01 04:58:11 +08:00
|
|
|
testImplementation("org.springframework:spring-core-test")
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
2024-05-06 15:50:20 +08:00
|
|
|
testRuntimeOnly("org.bouncycastle:bcprov-jdk18on:1.78.1")
|
2020-01-23 06:09:17 +08:00
|
|
|
testRuntimeOnly("org.springframework:spring-webmvc")
|
2024-05-06 15:50:20 +08:00
|
|
|
}
|
2024-07-29 17:48:45 +08:00
|
|
|
|
2024-09-25 04:52:39 +08:00
|
|
|
tasks.configureEach {
|
|
|
|
if ("checkArchitectureMain".equals(it.name)) {
|
|
|
|
prohibitObjectsRequireNonNull = false
|
|
|
|
}
|
2024-07-29 17:48:45 +08:00
|
|
|
}
|