Skip to content

Removing jdom from geonames dependency #1757

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion marklogic-client-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ dependencies {
testImplementation 'org.apache.commons:commons-lang3:3.17.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'com.opencsv:opencsv:5.10'
testImplementation 'org.geonames:geonames:1.0'

// This is used by a single test - JacksonDatabindTest - and it does not need the jdom module for the test to pass.
// The jdom module has a CVE associated with it - https://nvd.nist.gov/vuln/detail/CVE-2021-33813 .
testImplementation ('org.geonames:geonames:1.0') {
exclude module: "jdom"
}

testImplementation 'org.skyscreamer:jsonassert:1.5.3'
}

Expand Down