Skip to content

Commit

Permalink
Merge pull request #133 from DataBiosphere/apache_commons
Browse files Browse the repository at this point in the history
[PF-2987] Apache commons minor version upgrades
  • Loading branch information
cahrens authored Mar 12, 2024
2 parents eb82647 + fa8e32b commit 77468af
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions stairctl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ mainClassName = 'bio.terra.stairctl.Application'
dependencies {
implementation project(":stairway")

implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.9.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'

// JSON processing
ext {
Expand Down
2 changes: 1 addition & 1 deletion stairway-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
api project(':stairway')

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
Expand Down
2 changes: 1 addition & 1 deletion stairway-gcp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
api project(':stairway')

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
Expand Down
6 changes: 3 additions & 3 deletions stairway/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ plugins {
}

dependencies {
implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.9.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.12.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.14.0'
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'

// JSON processing
Expand Down

0 comments on commit 77468af

Please sign in to comment.