Skip to content

Commit

Permalink
Fix vulnerability #133
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets committed Sep 18, 2023
1 parent 9b666de commit 0096a86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ object Versions {
const val opencsv = "5.8"
const val ktor = "2.3.4"
const val coroutines = "1.7.3"
const val commonsCompress = "1.24.0"
}
4 changes: 3 additions & 1 deletion radar-commons/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ repositories {

// In this section you declare the dependencies for your production and test code
dependencies {
api("org.apache.avro:avro:${Versions.avro}")
api("org.apache.avro:avro:${Versions.avro}") {
implementation("org.apache.commons:commons-compress:${Versions.commonsCompress}")
}
api(kotlin("reflect"))

implementation(project(":radar-commons-kotlin"))
Expand Down

0 comments on commit 0096a86

Please sign in to comment.