Com.palantir.git-version: Difference between revisions
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
=Internal= | =Internal= | ||
* [[Gradle_Plugin_Concepts#External_Plugins|Gradle Plugin Concepts | External Plugins]] | * [[Gradle_Plugin_Concepts#External_Plugins|Gradle Plugin Concepts | External Plugins]] | ||
=Overview= | |||
=Latest Version= | |||
{{External|https://github.com/palantir/gradle-git-version/tags}} | |||
=Configuration= | |||
<syntaxhighlight lang='groovy'> | |||
plugins { | |||
id "com.palantir.git-version" version "0.12.3" | |||
} | |||
def gitVersion = versionDetails() | |||
gitVersion.lastTag | |||
gitVersion.commitDistance | |||
gitVersion.gitHash | |||
gitVersion.gitHashFull // full 40-character Git commit hash | |||
gitVersion.branchName // is null if the repository in detached HEAD mode | |||
gitVersion.isCleanTag | |||
</syntaxhighlight> |
Latest revision as of 06:38, 7 November 2020
External
Internal
Overview
Latest Version
Configuration
plugins {
id "com.palantir.git-version" version "0.12.3"
}
def gitVersion = versionDetails()
gitVersion.lastTag
gitVersion.commitDistance
gitVersion.gitHash
gitVersion.gitHashFull // full 40-character Git commit hash
gitVersion.branchName // is null if the repository in detached HEAD mode
gitVersion.isCleanTag