This is an automated email from the ASF dual-hosted git repository.

fanng 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 e997ad2ea [MINOR] fix(build): Add gradle.kts to iceberg parent module 
(#4653)
e997ad2ea is described below

commit e997ad2eabbcf88dc4518cdd10d233e0bc56cad3
Author: Jerry Shao <[email protected]>
AuthorDate: Fri Aug 23 17:58:30 2024 +0800

    [MINOR] fix(build): Add gradle.kts to iceberg parent module (#4653)
    
    ### 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
---
 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

Reply via email to