Skip to content

Commit

Permalink
Upgrade commons-configuration2 to 2.8.0 (#3063) (#3075)
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 authored Jul 25, 2022
1 parent ed44dfa commit d7b082f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
10 changes: 2 additions & 8 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ dependencies {
// testCompile "org.antlr:antlr4-runtime:4.7.2"

implementation group: 'org.roaringbitmap', name: 'RoaringBitmap', version: '0.7.17'
implementation group: 'org.apache.commons', name: 'commons-configuration2', version: '2.7'
implementation(group: 'org.apache.commons', name: 'commons-configuration2', version: '2.7') {
implementation(group: 'org.apache.commons', name: 'commons-configuration2', version: '2.8.0') {
exclude group: "org.yaml"
exclude module: "snakeyaml"
exclude module: "commons-lang3"
}
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.26'
testImplementation group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
Expand All @@ -81,12 +81,6 @@ dependencies {
}
}

implementation(group: 'org.apache.commons', name: 'commons-lang3') {
version {
strictly '3.12.0'
}
}

compileOnly group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.11.270'
testImplementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.11.270'

Expand Down
3 changes: 2 additions & 1 deletion full/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,10 @@ dependencies {
testImplementation group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '5.1.0'

implementation group: 'org.roaringbitmap', name: 'RoaringBitmap', version: '0.7.17'
implementation(group: 'org.apache.commons', name: 'commons-configuration2', version: '2.7') {
implementation(group: 'org.apache.commons', name: 'commons-configuration2', version: '2.8.0') {
exclude group: "org.yaml"
exclude module: "snakeyaml"
exclude module: "commons-lang3"
}
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.26'
testImplementation group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
Expand Down

0 comments on commit d7b082f

Please sign in to comment.