2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Context"
|
|
|
|
|
|
|
|
apply plugin: "groovy"
|
2019-08-21 02:26:43 +08:00
|
|
|
apply plugin: "kotlin"
|
2017-08-21 20:41:55 +08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile(project(":spring-aop"))
|
|
|
|
compile(project(":spring-beans"))
|
2018-08-16 21:32:44 +08:00
|
|
|
compile(project(":spring-core"))
|
2017-09-25 19:50:50 +08:00
|
|
|
compile(project(":spring-expression"))
|
2017-08-21 20:41:55 +08:00
|
|
|
optional(project(":spring-instrument"))
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("javax.annotation:javax.annotation-api")
|
|
|
|
optional("javax.ejb:javax.ejb-api")
|
|
|
|
optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api")
|
|
|
|
optional("javax.inject:javax.inject")
|
|
|
|
optional("javax.interceptor:javax.interceptor-api")
|
|
|
|
optional("javax.money:money-api")
|
2020-02-06 19:59:55 +08:00
|
|
|
// Overriding 2.0.1.Final due to Bean Validation 1.1 compatibility in LocalValidatorFactoryBean
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.validation:validation-api:1.1.0.Final")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("javax.xml.ws:jaxws-api")
|
|
|
|
optional("org.aspectj:aspectjweaver")
|
|
|
|
optional("org.codehaus.groovy:groovy")
|
2020-04-08 00:06:43 +08:00
|
|
|
optional("org.apache-extras.beanshell:bsh")
|
2019-08-27 03:13:12 +08:00
|
|
|
optional("joda-time:joda-time")
|
2019-02-22 21:18:08 +08:00
|
|
|
optional("org.hibernate:hibernate-validator:5.4.3.Final")
|
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")
|
2019-12-30 02:15:23 +08:00
|
|
|
testCompile(testFixtures(project(":spring-aop")))
|
2019-12-29 00:13:39 +08:00
|
|
|
testCompile(testFixtures(project(":spring-beans")))
|
2019-12-28 18:44:40 +08:00
|
|
|
testCompile(testFixtures(project(":spring-core")))
|
2019-07-05 22:19:23 +08:00
|
|
|
testCompile("io.projectreactor:reactor-core")
|
2019-08-27 03:13:12 +08:00
|
|
|
testCompile("org.codehaus.groovy:groovy-jsr223")
|
|
|
|
testCompile("org.codehaus.groovy:groovy-test")
|
|
|
|
testCompile("org.codehaus.groovy:groovy-xml")
|
|
|
|
testCompile("org.apache.commons:commons-pool2")
|
|
|
|
testCompile("javax.inject:javax.inject-tck")
|
|
|
|
testCompile("org.awaitility:awaitility")
|
|
|
|
testRuntime("javax.xml.bind:jaxb-api")
|
|
|
|
testRuntime("org.glassfish:javax.el")
|
2020-02-06 19:59:55 +08:00
|
|
|
// Substitute for javax.management:jmxremote_optional:1.0.1_04 (not available on Maven Central)
|
|
|
|
testRuntime("org.glassfish.external:opendmk_jmxremote_optional_jar")
|
2019-08-27 03:13:12 +08:00
|
|
|
testRuntime("org.javamoney:moneta")
|
2019-09-27 19:57:31 +08:00
|
|
|
testRuntime("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
|
|
|
}
|