2022-02-25 13:57:11 +08:00
|
|
|
description = "Spring Core Test"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":spring-core"))
|
2025-03-18 00:48:22 +08:00
|
|
|
optional("org.assertj:assertj-core")
|
|
|
|
optional("org.junit.jupiter:junit-jupiter-api")
|
|
|
|
compileOnly("org.junit.jupiter:junit-jupiter-params") // Used in CompileWithForkedClassLoaderExtension Javadoc
|
|
|
|
compileOnly("org.junit.platform:junit-platform-launcher") // Used in CompileWithForkedClassLoaderExtension
|
2022-09-03 15:23:20 +08:00
|
|
|
implementation("com.thoughtworks.qdox:qdox")
|
2022-02-25 13:57:11 +08:00
|
|
|
}
|
2022-07-01 00:20:16 +08:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Premain-Class': 'org.springframework.aot.agent.RuntimeHintsAgent',
|
|
|
|
'Can-Redefine-Classes': 'true'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|