Although the jmxremote_optional JAR has been added to the build agents on the Bamboo CI server for the latest JDK 8 installation, that solution is brittle since it has to be manually installed in every new JDK installation. In addition, this approach will not work with JDK 9+ since the "Extension Mechanism" has been removed beginning with JDK 9. https://docs.oracle.com/javase/10/migrate/toc.htm#JSMIG-GUID-2C896CA8-927C-4381-A737-B1D81D964B7B This commit addresses this issue by adding the following dependency to spring-context. // 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") With this change, the Spring PERFORMANCE builds now execute on JDK 8, 9, and 11. See gh-22757
39 lines
1.7 KiB
Groovy
39 lines
1.7 KiB
Groovy
description = "Spring Context"
|
|
|
|
apply plugin: "groovy"
|
|
|
|
dependencies {
|
|
compile(project(":spring-aop"))
|
|
compile(project(":spring-beans"))
|
|
compile(project(":spring-core"))
|
|
compile(project(":spring-expression"))
|
|
optional(project(":spring-instrument"))
|
|
optional("javax.annotation:javax.annotation-api:1.3.2")
|
|
optional("javax.ejb:javax.ejb-api:3.2")
|
|
optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0")
|
|
optional("javax.inject:javax.inject:1")
|
|
optional("javax.interceptor:javax.interceptor-api:1.2.2")
|
|
optional("javax.money:money-api:1.0.3")
|
|
optional("javax.validation:validation-api:1.1.0.Final")
|
|
optional("javax.xml.ws:jaxws-api:2.3.1")
|
|
optional("org.aspectj:aspectjweaver:${aspectjVersion}")
|
|
optional("org.codehaus.groovy:groovy:${groovyVersion}")
|
|
optional("org.beanshell:bsh:2.0b5")
|
|
optional("joda-time:joda-time:2.10.1")
|
|
optional("org.hibernate:hibernate-validator:5.4.3.Final")
|
|
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
|
|
testCompile("org.codehaus.groovy:groovy-jsr223:${groovyVersion}")
|
|
testCompile("org.codehaus.groovy:groovy-test:${groovyVersion}")
|
|
testCompile("org.codehaus.groovy:groovy-xml:${groovyVersion}")
|
|
testCompile("org.apache.commons:commons-pool2:2.6.0")
|
|
testCompile("javax.inject:javax.inject-tck:1")
|
|
// 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")
|
|
testCompile("org.awaitility:awaitility:3.1.3")
|
|
testRuntime("javax.xml.bind:jaxb-api:2.3.1")
|
|
testRuntime("org.glassfish:javax.el:3.0.1-b08")
|
|
testRuntime("org.javamoney:moneta:1.3")
|
|
}
|