Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Updated commons-compress, log4j & jackson-databind to close some critical and high
threats.
  • Loading branch information
dr0i committed Nov 26, 2021
1 parent 88ca5fc commit a81f2bf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion metafacture-biblio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
exclude group: 'xercesImpl', module: 'xercesImpl'
exclude group: 'xml-apis', module: 'xml-apis'
}
implementation 'log4j:log4j:1.2.12'
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
}
2 changes: 1 addition & 1 deletion metafacture-elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = 'Modules for sending data to an Elasticsearch instance'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
}
2 changes: 1 addition & 1 deletion metafacture-html/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.apache.commons:commons-compress:1.12'
implementation 'org.apache.commons:commons-compress:1.21'
implementation 'commons-io:commons-io:2.6'
implementation 'org.jsoup:jsoup:1.12.1'
testImplementation 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-io/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'commons-io:commons-io:2.5'
implementation 'org.apache.commons:commons-compress:1.20'
implementation 'org.apache.commons:commons-compress:1.21'
runtimeOnly 'org.tukaani:xz:1.6'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
Expand Down
4 changes: 2 additions & 2 deletions metafacture-json/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ description = 'Modules for processing JSON data in Metafacture'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.core:jackson-core:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
implementation 'com.jayway.jsonpath:json-path:2.6.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-xml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.apache.commons:commons-compress:1.12'
implementation 'org.apache.commons:commons-compress:1.21'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21'
Expand Down

1 comment on commit a81f2bf

@blackwinter
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related to #426 (first bullet point), right?

Please sign in to comment.