Skip to content
Merged
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
7 changes: 6 additions & 1 deletion smart-client-jersey/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ dependencies {
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation('com.sun.jersey:jersey-json:1.19.4') {
exclude group: 'org.codehaus.jackson'
constraints {
implementation('org.codehaus.jettison:jettison:1.5.4') {
because 'previous versions have multiple CVEs'
}
}
}
// NOTE: Jackson 2.13 dropped support for JAX-RS 1.x, and we use Jersey client 1.x, so we are stuck on Jackson 1.12.x
// ref: https://github.com/FasterXML/jackson-jaxrs-providers/issues/90#issuecomment-1081368194
Expand All @@ -20,4 +25,4 @@ dependencies {

test {
useJUnit()
}
}