This is an automated email from the ASF dual-hosted git repository.
blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 95f9adba7 Build: Exclude unnecessary git properties from
iceberg-build.properties (#5277)
95f9adba7 is described below
commit 95f9adba722d192f79f26fdf94d90fc8d8e4bc50
Author: Prashant Singh <[email protected]>
AuthorDate: Fri Jul 15 21:02:00 2022 +0530
Build: Exclude unnecessary git properties from iceberg-build.properties
(#5277)
Co-authored-by: Prashant Singh <[email protected]>
---
build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.gradle b/build.gradle
index d9a6effdd..94b14db10 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 }