diff --git a/build.gradle b/build.gradle index 752ddce00..b58cfbe80 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ import org.apache.tools.ant.filters.ReplaceTokens import org.jfrog.build.Version String testNgVersion = '6.10' -String jacksonVersion = '2.12.6' +String jacksonVersion = '2.13.4' // Root project version should not be used project.version = '2' @@ -77,7 +77,7 @@ subprojects { implementation group: 'commons-logging', name: 'commons-logging', version: '1.1.1' implementation group: 'commons-io', name: 'commons-io', version: '2.8.0' implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: jacksonVersion - implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1' + implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4.2' implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jacksonVersion implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.21' implementation("org.apache.httpcomponents:httpclient:4.5.13") { @@ -233,7 +233,7 @@ project('build-info-api') { description = 'JFrog Build-Info API' dependencies { implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: jacksonVersion - implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1' + implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4.1' implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jacksonVersion implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.21' } @@ -364,7 +364,7 @@ project('build-info-extractor-maven3') { 'org.eclipse.aether:aether-api:1.0.2.v20150114', 'org.eclipse.aether:aether-util:1.0.2.v20150114', 'org.eclipse.aether:aether-impl:1.0.2.v20150114', - 'org.codehaus.plexus:plexus-utils:3.0.10', + 'org.codehaus.plexus:plexus-utils:3.0.16', 'org.apache.maven:maven-repository-metadata:3.5.2', 'org.apache.maven:maven-model:3.1.0', 'org.codehaus.plexus:plexus-cipher:1.8' @@ -419,7 +419,10 @@ project('build-info-extractor-nuget') { description = 'JFrog Build-Info NuGet Extractor' dependencies { - implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.11.1' + implementation('com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.11.1') { + exclude group: 'com.fasterxml.woodstox', module: 'woodstox-core' + } + implementation group: 'com.fasterxml.woodstox', name: 'woodstox-core', version: '5.4.0' } }