This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.6 by this push:
new e841ee54e [MINOR] fix(build): Add gradle.kts to iceberg parent module
(#4656)
e841ee54e is described below
commit e841ee54e23f372fb2ba41bec7d2ab7834ce3b1b
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 23 19:57:02 2024 +0800
[MINOR] fix(build): Add gradle.kts to iceberg parent module (#4656)
### What changes were proposed in this pull request?
Add gradle.kts to iceberg parent module so that it will not generate any
empty jars.
### Why are the changes needed?
Fix publishing issue.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
local build test
Co-authored-by: Jerry Shao <[email protected]>
---
iceberg/build.gradle.kts | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/iceberg/build.gradle.kts b/iceberg/build.gradle.kts
new file mode 100644
index 000000000..043fbfec6
--- /dev/null
+++ b/iceberg/build.gradle.kts
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+tasks.all {
+ enabled = false
+}
\ No newline at end of file