This is an automated email from the ASF dual-hosted git repository.
jshao 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 e89d80fa8 [Improvement] Remove gravitino-docs-*.jar from Gravitino
release files (#5615)
e89d80fa8 is described below
commit e89d80fa8391a61ac14d3d12c64a4563ea0bf0f1
Author: yangyang zhong <[email protected]>
AuthorDate: Fri Nov 22 19:03:16 2024 +0800
[Improvement] Remove gravitino-docs-*.jar from Gravitino release files
(#5615)
### What changes were proposed in this pull request?
Remove gravitino-docs-*.jar from Gravitino release files

### Why are the changes needed?
close #5490
### Does this PR introduce _any_ user-facing change?
None
---
build.gradle.kts | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 100b243b5..a7c9ae40a 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -797,7 +797,8 @@ tasks {
!it.name.startsWith("trino-connector") &&
it.name != "bundled-catalog" &&
it.name != "hive-metastore-common" && it.name != "gcp-bundle" &&
- it.name != "aliyun-bundle" && it.name != "aws-bundle" && it.name !=
"azure-bundle"
+ it.name != "aliyun-bundle" && it.name != "aws-bundle" && it.name !=
"azure-bundle" &&
+ it.name != "docs"
) {
dependsOn("${it.name}:build")
from("${it.name}/build/libs")