Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions dumper/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ dependencies {
implementation libs.dnsjava // explicit version for vulnerabilities update
implementation libs.nimbus.jose.jwt // explicit version for vulnerabilities update
implementation libs.zookeeper // explicit version for vulnerabilities update
implementation libs.common.configuration2 // explicit version for vulnerabilities update

implementation libs.hadoop.hdfs.client
implementation(libs.harawata.appdirs) {
Expand Down Expand Up @@ -293,9 +294,9 @@ distributions {
from(generateLicenseReport) {
into "docs/licenses"
}
// from(generateSourceMirror) {
// into "docs/sources"
// }
from(generateSourceMirror) {
into "docs/sources"
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dumper/app/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ org.apache.arrow:arrow-vector:17.0.0=compileClasspath,runtimeClasspath,testCompi
org.apache.avro:avro:1.11.4=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-compress:1.26.2=compileClasspath,runtimeClasspath
org.apache.commons:commons-compress:1.27.1=testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-configuration2:2.8.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-configuration2:2.12.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-csv:1.13.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-lang3:3.18.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.commons:commons-math3:3.6.1=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
Expand Down
1 change: 1 addition & 0 deletions dumper/lib-ext-hive-metastore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ dependencies {
hive312RuntimeOnly libs.dnsjava // explicit version for vulnerabilities update
hive312RuntimeOnly libs.nimbus.jose.jwt // explicit version for vulnerabilities update
hive312RuntimeOnly libs.zookeeper // explicit version for vulnerabilities update
hive312RuntimeOnly libs.common.configuration2 // explicit version for vulnerabilities update

// For HiveServer2
hive312RuntimeOnly libs.tez.common
Expand Down
2 changes: 1 addition & 1 deletion dumper/lib-ext-hive-metastore/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ org.apache.calcite:calcite-druid:1.16.0=hive312RuntimeClasspath
org.apache.calcite:calcite-linq4j:1.16.0=hive312RuntimeClasspath
org.apache.commons:commons-collections4:4.1=hive312RuntimeClasspath
org.apache.commons:commons-compress:1.26.2=hive312RuntimeClasspath
org.apache.commons:commons-configuration2:2.8.0=hive312RuntimeClasspath
org.apache.commons:commons-configuration2:2.12.0=hive312RuntimeClasspath
org.apache.commons:commons-crypto:1.0.0=hive312RuntimeClasspath
org.apache.commons:commons-lang3:3.14.0=hive312RuntimeClasspath
org.apache.commons:commons-lang3:3.18.0=runtimeClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ nimbus-jose-jwt = "9.37.4"
io-grpc = "1.76.0"
xerces = "2.12.2"
zookeeper = "3.9.4"
common-configuration2 = "2.12.0"

[libraries]
apache-avro = { module = "org.apache.avro:avro", version.ref = "apache-avro" }
Expand Down Expand Up @@ -119,6 +120,7 @@ gradle-license-report = { module = "com.github.jk1:gradle-license-report", versi
guava = { module = "com.google.guava:guava", version.ref = "guava" }
hadoop-auth = { module = "org.apache.hadoop:hadoop-auth", version.ref = "hadoop"}
hadoop-common = { module = "org.apache.hadoop:hadoop-common", version.ref = "hadoop" }
common-configuration2 = { module = "org.apache.commons:commons-configuration2", version.ref = "common-configuration2" }
nimbus-jose-jwt = { module = "com.nimbusds:nimbus-jose-jwt", version.ref = "nimbus-jose-jwt" }
dnsjava = { module = "dnsjava:dnsjava", version.ref = "dnsjava" }
commons-beanutils = { module = "commons-beanutils:commons-beanutils", version.ref = "commons-beanutils" }
Expand Down