From e3bd645f1d9566c285690a8aa43e560a6fe580d2 Mon Sep 17 00:00:00 2001 From: Jerry Shao Date: Tue, 9 Apr 2024 10:11:33 +0800 Subject: [PATCH] [MINOR] Disable doris module since it is not ready for shipping (#2838) ### What changes were proposed in this pull request? Don't package the Doris module into released package, since it is not ready for shipping. We could enable this when it is functional-ready. ### Why are the changes needed? To avoid ship with incomplete feature. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? No. --- build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 840d6ddc5b0..9b75fac9e5b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -701,7 +701,8 @@ tasks { dependsOn( ":catalogs:catalog-hive:copyLibAndConfig", ":catalogs:catalog-lakehouse-iceberg:copyLibAndConfig", - ":catalogs:catalog-jdbc-doris:copyLibAndConfig", + // TODO. Enable packaging the catalog-jdbc-doris module when it is ready for shipping + // ":catalogs:catalog-jdbc-doris:copyLibAndConfig", ":catalogs:catalog-jdbc-mysql:copyLibAndConfig", ":catalogs:catalog-jdbc-postgresql:copyLibAndConfig", ":catalogs:catalog-hadoop:copyLibAndConfig",