Skip to content

Commit

Permalink
Fix hdfs-fixture kerb-admin & hadoop-minicluster dependencies are not…
Browse files Browse the repository at this point in the history
… being updated / false positive reports on CVEs (opensearch-project#14729)

Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
  • Loading branch information
reta authored and harshavamsi committed Jul 12, 2024
1 parent 24f666f commit e02e223
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/fixtures/hdfs-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ apply plugin: 'opensearch.java'
group = 'hdfs'

versions << [
'jetty': '9.4.53.v20231009'
'jetty': '9.4.55.v20240627'
]

dependencies {
Expand Down Expand Up @@ -73,7 +73,12 @@ dependencies {
api "commons-net:commons-net:3.11.1"
api "ch.qos.logback:logback-core:1.5.6"
api "ch.qos.logback:logback-classic:1.2.13"
api 'org.apache.kerby:kerb-admin:2.0.3'
api "org.jboss.xnio:xnio-nio:3.8.16.Final"
api 'org.jline:jline:3.26.2'
api ('org.apache.kerby:kerb-admin:2.0.3') {
exclude group: "org.jboss.xnio"
exclude group: "org.jline"
}
runtimeOnly "com.google.guava:guava:${versions.guava}"
runtimeOnly("com.squareup.okhttp3:okhttp:4.12.0") {
exclude group: "com.squareup.okio"
Expand Down

0 comments on commit e02e223

Please sign in to comment.