Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ allprojects {
force "com.google.http-client:google-http-client-gson:${googleHttpClientGsonVersion}"
// workflow (Activiti) brings in older versions of these libraries, so we need to force these versions
force "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
force "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
force "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
// The version of picard we depend on brings in an older version of htsjdk, but SequenceAnalysis depends on a later version
force "com.github.samtools:htsjdk:${htsjdkVersion}"
// Cloud module brings in earlier versions of this library, so we force the later one
Expand Down
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,10 @@ httpcore5Version=5.1.4
httpclientVersion=4.5.13
httpcoreVersion=4.4.14

jacksonVersion=2.13.3
jacksonAnnotationsVersion=2.13.3
jacksonJaxrsBaseVersion=2.13.3
jacksonVersion=2.13.4
jacksonAnnotationsVersion=2.13.4
jacksonDatabindVersion=2.13.4.2
jacksonJaxrsBaseVersion=2.13.4

jamaVersion=1.0.3

Expand Down