Com.palantir.git-version: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://github.com/palantir/gradle-git-version =Internal=")
 
 
(6 intermediate revisions by the same user not shown)
Line 2: Line 2:
* https://github.com/palantir/gradle-git-version
* https://github.com/palantir/gradle-git-version
=Internal=
=Internal=
* [[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

https://github.com/palantir/gradle-git-version/tags

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