2022-09-02 23:29:24 +08:00
|
|
|
plugins {
|
|
|
|
id 'org.springframework.build.runtimehints-agent'
|
|
|
|
}
|
|
|
|
|
2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Context"
|
|
|
|
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "kotlin"
|
2017-08-21 20:41:55 +08:00
|
|
|
|
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-aop"))
|
|
|
|
api(project(":spring-beans"))
|
|
|
|
api(project(":spring-core"))
|
|
|
|
api(project(":spring-expression"))
|
2017-08-21 20:41:55 +08:00
|
|
|
optional(project(":spring-instrument"))
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("jakarta.annotation:jakarta.annotation-api")
|
|
|
|
optional("jakarta.ejb:jakarta.ejb-api")
|
|
|
|
optional("jakarta.enterprise.concurrent:jakarta.enterprise.concurrent-api")
|
|
|
|
optional("jakarta.inject:jakarta.inject-api")
|
|
|
|
optional("jakarta.interceptor:jakarta.interceptor-api")
|
|
|
|
optional("jakarta.validation:jakarta.validation-api")
|
2021-09-21 23:07:42 +08:00
|
|
|
optional("javax.money:money-api")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("org.aspectj:aspectjweaver")
|
2022-02-05 04:01:02 +08:00
|
|
|
optional("org.apache.groovy:groovy")
|
2020-04-08 00:06:43 +08:00
|
|
|
optional("org.apache-extras.beanshell:bsh")
|
2021-09-17 15:14:07 +08:00
|
|
|
optional("org.hibernate:hibernate-validator")
|
2019-07-19 16:20:35 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
2019-07-05 22:19:23 +08:00
|
|
|
optional("org.reactivestreams:reactive-streams")
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-aop")))
|
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
2022-03-07 01:40:27 +08:00
|
|
|
testImplementation(project(":spring-core-test"))
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation("io.projectreactor:reactor-core")
|
2022-02-05 04:01:02 +08:00
|
|
|
testImplementation("org.apache.groovy:groovy-jsr223")
|
|
|
|
testImplementation("org.apache.groovy:groovy-xml")
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation("org.apache.commons:commons-pool2")
|
|
|
|
testImplementation("org.awaitility:awaitility")
|
2021-09-21 23:07:42 +08:00
|
|
|
testImplementation("jakarta.inject:jakarta.inject-tck")
|
2021-09-17 15:14:07 +08:00
|
|
|
testRuntimeOnly("jakarta.xml.bind:jakarta.xml.bind-api")
|
|
|
|
testRuntimeOnly("org.glassfish:jakarta.el")
|
2020-02-06 19:59:55 +08:00
|
|
|
// Substitute for javax.management:jmxremote_optional:1.0.1_04 (not available on Maven Central)
|
2021-05-22 03:16:30 +08:00
|
|
|
testRuntimeOnly("org.glassfish.external:opendmk_jmxremote_optional_jar")
|
|
|
|
testRuntimeOnly("org.javamoney:moneta")
|
|
|
|
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") // for @Inject TCK
|
2019-12-29 00:13:39 +08:00
|
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
|
|
testFixturesImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testFixturesImplementation("com.google.code.findbugs:jsr305")
|
|
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|