You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/09/03 21:49:50 UTC

[iceberg] 02/04: Build: Exclude unnecessary git properties from iceberg-build.properties (#5277)

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

blue pushed a commit to branch 0.14.x
in repository https://gitbox.apache.org/repos/asf/iceberg.git

commit b9b62b0ab795ac2045b19dd690dfe30e6dad56ab
Author: Prashant Singh <35...@users.noreply.github.com>
AuthorDate: Fri Jul 15 21:02:00 2022 +0530

    Build: Exclude unnecessary git properties from iceberg-build.properties (#5277)
    
    Co-authored-by: Prashant Singh <ps...@amazon.com>
---
 build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build.gradle b/build.gradle
index 3a6468ba3c..28188edb4c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -64,6 +64,8 @@ gitProperties {
   gitPropertiesResourceDir = file("${rootDir}/build")
   extProperty = 'gitProps'
   failOnNoGitDirectory = true
+  keys = ['git.branch', 'git.build.version', 'git.closest.tag.name','git.commit.id.abbrev', 'git.commit.id',
+          'git.commit.message.short', 'git.commit.time', 'git.tags']
 }
 generateGitProperties.outputs.upToDateWhen { false }