Skip to content

Commit

Permalink
Update dependencies (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi authored Nov 10, 2022
1 parent 789f3e7 commit df2bdd3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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") {
Expand Down Expand Up @@ -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'
}
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
}
}

Expand Down

0 comments on commit df2bdd3

Please sign in to comment.