Skip to content

Commit

Permalink
Dependency updates to address vulns
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscochrane committed Oct 14, 2024
1 parent 28322de commit 21f4218
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions cordformation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ repositories {
}

configurations {
all {
resolutionStrategy {
eachDependency { details ->
if (details.requested.group == 'commons-io') {
if (details.requested.name == "commons-io") {
details.useVersion commons_io_version
}
}
}
}
}
noderunner
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kotlin_version=1.3.41
dokka_version=1.4.32
jackson_version=2.15.1
snake_yaml_version=2.0
commons_io_version=2.11.0
commons_io_version=2.17.0
assertj_version=3.22.0
junit_jupiter_version=5.9.3
hamcrest_version=2.1
Expand Down

0 comments on commit 21f4218

Please sign in to comment.