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 f0584f930549b4526db41b2aa1e2431e843f38a1 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 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 }
