From 742982c441bbb0726f5edc3d4769f6330ffa34d6 Mon Sep 17 00:00:00 2001 From: yuqi Date: Wed, 25 Dec 2024 16:23:10 +0800 Subject: [PATCH] polish again --- catalogs/catalog-hadoop/build.gradle.kts | 25 +++++++----------------- 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/catalogs/catalog-hadoop/build.gradle.kts b/catalogs/catalog-hadoop/build.gradle.kts index 6946a51fedc..6cdafcc0643 100644 --- a/catalogs/catalog-hadoop/build.gradle.kts +++ b/catalogs/catalog-hadoop/build.gradle.kts @@ -28,28 +28,22 @@ dependencies { implementation(project(":api")) { exclude(group = "*") } - - implementation(project(":core")) { + implementation(project(":catalogs:catalog-common")) { exclude(group = "*") } - - implementation(project(":common")) { + implementation(project(":catalogs:hadoop-common")) { exclude(group = "*") } - - implementation(project(":catalogs:catalog-common")) { + implementation(project(":common")) { exclude(group = "*") } - - implementation(project(":catalogs:hadoop-common")) { + implementation(project(":core")) { exclude(group = "*") } - implementation(libs.commons.lang3) implementation(libs.commons.io) implementation(libs.hadoop3.client.api) implementation(libs.hadoop3.client.runtime) - implementation(libs.hadoop3.hdfs) { exclude("com.sun.jersey") exclude("javax.servlet", "servlet-api") @@ -59,23 +53,18 @@ dependencies { exclude("io.netty") exclude("org.fusesource.leveldbjni") } - implementation(libs.slf4j.api) compileOnly(libs.guava) testImplementation(project(":clients:client-java")) - testImplementation(project(":integration-test-common", "testArtifacts")) - testImplementation(project(":server")) - testImplementation(project(":server-common")) testImplementation(project(":bundles:aws-hadoop-bundle", configuration = "shadow")) testImplementation(project(":bundles:gcp-hadoop-bundle", configuration = "shadow")) testImplementation(project(":bundles:aliyun-hadoop-bundle", configuration = "shadow")) testImplementation(project(":bundles:azure-hadoop-bundle", configuration = "shadow")) - - testImplementation(libs.minikdc) - testImplementation(libs.hadoop3.minicluster) - + testImplementation(project(":integration-test-common", "testArtifacts")) + testImplementation(project(":server")) + testImplementation(project(":server-common")) testImplementation(libs.bundles.log4j) testImplementation(libs.hadoop3.gcs) testImplementation(libs.hadoop3.minicluster)