2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Context"
|
|
|
|
|
|
|
|
apply plugin: "groovy"
|
|
|
|
|
2019-07-05 22:19:23 +08:00
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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"))
|
2018-02-28 21:01:04 +08:00
|
|
|
optional("javax.annotation:javax.annotation-api:1.3.2")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.ejb:javax.ejb-api:3.2")
|
|
|
|
optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0")
|
2017-09-24 23:18:21 +08:00
|
|
|
optional("javax.inject:javax.inject:1")
|
2018-07-24 20:44:56 +08:00
|
|
|
optional("javax.interceptor:javax.interceptor-api:1.2.2")
|
2018-05-06 02:38:28 +08:00
|
|
|
optional("javax.money:money-api:1.0.3")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("javax.validation:validation-api:1.1.0.Final")
|
2018-11-19 19:41:26 +08:00
|
|
|
optional("javax.xml.ws:jaxws-api:2.3.1")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("org.aspectj:aspectjweaver:${aspectjVersion}")
|
2018-06-08 19:37:44 +08:00
|
|
|
optional("org.codehaus.groovy:groovy:${groovyVersion}")
|
2017-08-21 20:41:55 +08:00
|
|
|
optional("org.beanshell:bsh:2.0b5")
|
2018-10-30 01:33:36 +08:00
|
|
|
optional("joda-time:joda-time:2.10.1")
|
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")
|
|
|
|
testCompile("io.projectreactor:reactor-core")
|
2018-06-08 19:37:44 +08:00
|
|
|
testCompile("org.codehaus.groovy:groovy-jsr223:${groovyVersion}")
|
|
|
|
testCompile("org.codehaus.groovy:groovy-test:${groovyVersion}")
|
2018-11-05 19:27:07 +08:00
|
|
|
testCompile("org.codehaus.groovy:groovy-xml:${groovyVersion}")
|
2018-07-12 22:53:37 +08:00
|
|
|
testCompile("org.apache.commons:commons-pool2:2.6.0")
|
2017-08-21 20:41:55 +08:00
|
|
|
testCompile("javax.inject:javax.inject-tck:1")
|
2019-04-08 19:22:30 +08:00
|
|
|
// Substitute for "javax.management:jmxremote_optional:1.0.1_04" which
|
|
|
|
// is not available on Maven Central
|
|
|
|
testRuntime("org.glassfish.external:opendmk_jmxremote_optional_jar:1.0-b01-ea")
|
2018-11-19 19:41:26 +08:00
|
|
|
testCompile("org.awaitility:awaitility:3.1.3")
|
|
|
|
testRuntime("javax.xml.bind:jaxb-api:2.3.1")
|
2017-08-21 20:41:55 +08:00
|
|
|
testRuntime("org.glassfish:javax.el:3.0.1-b08")
|
2018-07-24 20:44:56 +08:00
|
|
|
testRuntime("org.javamoney:moneta:1.3")
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|