Skip to content

Commit 58ac3e6

Browse files
committed
Added JAXB jars for functional tests and dev tools
1 parent baf8e41 commit 58ac3e6

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

marklogic-client-api-functionaltests/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ dependencies {
2929
implementation "org.jdom:jdom2:2.0.6.1"
3030
implementation "com.marklogic:ml-app-deployer:4.6.1"
3131

32+
if (JavaVersion.current().isJava9Compatible()) {
33+
implementation 'javax.xml.bind:jaxb-api:2.3.1'
34+
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.8'
35+
implementation 'org.glassfish.jaxb:jaxb-core:2.3.0.1'
36+
}
37+
3238
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
3339
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
3440
testImplementation 'org.xmlunit:xmlunit-legacy:2.9.0'

ml-development-tools/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ dependencies {
1515
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.15.3'
1616
implementation 'com.networknt:json-schema-validator:1.0.88'
1717

18+
if (JavaVersion.current().isJava9Compatible()) {
19+
implementation 'javax.xml.bind:jaxb-api:2.3.1'
20+
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.8'
21+
implementation 'org.glassfish.jaxb:jaxb-core:2.3.0.1'
22+
}
23+
1824
// Not yet migrating this project to JUnit 5. Will reconsider it once we have a reason to enhance
1925
// this project.
2026
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)