This is an automated email from the ASF dual-hosted git repository. liuxun pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push: new 93b623b5c [#5671] fix(auth): Auth IT should add Iceberg and Paimon dependency (#5672) 93b623b5c is described below commit 93b623b5cddf1448f2753909cadc723fc089e8ef Author: roryqi <ror...@apache.org> AuthorDate: Wed Nov 27 14:54:41 2024 +0800 [#5671] fix(auth): Auth IT should add Iceberg and Paimon dependency (#5672) ### What changes were proposed in this pull request? Auth IT should add Iceberg and Paimon dependency ### Why are the changes needed? Fix: #5671 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? I run the command `./gradlew clean` and run `RangerPaimonE2EIT` locally. --- authorizations/authorization-ranger/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorizations/authorization-ranger/build.gradle.kts b/authorizations/authorization-ranger/build.gradle.kts index 0eeb6c4fb..f83aee72c 100644 --- a/authorizations/authorization-ranger/build.gradle.kts +++ b/authorizations/authorization-ranger/build.gradle.kts @@ -133,7 +133,7 @@ tasks.test { doFirst { environment("HADOOP_USER_NAME", "gravitino") } - dependsOn(":catalogs:catalog-hive:jar", ":catalogs:catalog-hive:runtimeJars") + dependsOn(":catalogs:catalog-hive:jar", ":catalogs:catalog-hive:runtimeJars", ":catalogs:catalog-lakehouse-iceberg:jar", ":catalogs:catalog-lakehouse-iceberg:runtimeJars", ":catalogs:catalog-lakehouse-paimon:jar", ":catalogs:catalog-lakehouse-paimon:runtimeJars") val skipITs = project.hasProperty("skipITs") if (skipITs) {