• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

qoomon/gradle-git-versioning-plugin: This extension will set project version, ba ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

qoomon/gradle-git-versioning-plugin

开源软件地址(OpenSource Url):

https://github.com/qoomon/gradle-git-versioning-plugin

开源编程语言(OpenSource Language):

Java 98.8%

开源软件介绍(OpenSource Introduction):

Gradle Git Versioning Plugin

Gradle Plugin Portal Changelog Build Workflow LGTM Grade

Example

Also available as Maven Extension

This plugin can virtually set project version and properties, based on current Git status.

No files will be modified, version and properties are modified in memory only.

  • Get rid of...
    • editing build.gradle
    • managing project versions within files and Git tags
    • git merge conflicts

Usage

Add Plugin to Gradle Project

⚠️ You should apply git versioning (gitVersioning.apply{...}) directly after version declaration at root project only.

Groovy DSL build.gradle

plugins {
    id 'me.qoomon.git-versioning' version '5.2.0'
}

version = '0.0.0-SNAPSHOT'
gitVersioning.apply {
    // see configuration documentation below
}

Kotlin DSL build.gradle.kts

plugins {
    id("me.qoomon.git-versioning") version "5.2.0"
}


// ...

version = "0.0.0-SNAPSHOT"
gitVersioning.apply {
    // see configuration documentation below
}

Configure Plugin

Consider CI/CD section when running this plugin in a CI/CD environment

You can configure the version and properties adjustments for specific branches and tags.

Groovy DSL Example: build.gradle

version = '0.0.0-SNAPSHOT'
gitVersioning.apply {
    refs {
        branch('.+') {
            version = '${ref}-SNAPSHOT'
        }
        tag('v(?<version>.*)') {
            version = '${ref.version}'
        }
    }

    // optional fallback configuration in case of no matching ref configuration
    rev {
        version = '${commit}'
    }
}

Kotlin DSL Example: build.gradle.kts

version = "0.0.0-SNAPSHOT"
gitVersioning.apply {
    refs {
        branch(".+") {
            version = "\${ref}-SNAPSHOT"
        }
        tag("v(?<version>.*)") {
            version = "\${ref.version}"
        }
    }

    // optional fallback configuration in case of no matching ref configuration
    rev {
        version = "\${commit}"
    }
}

Configuration Options

  • disable global disable(true)/enable(false) extension, default is false.

    • Can be overridden by command option, see (Parameters & Environment Variables)[#parameters-&-environment-variables]
  • describeTagPattern An arbitrary regex to match tag names for git describe command (has to be a full match pattern e.g. v.+), default is .*

  • updateGradleProperties Enable(true)/disable(false) version and properties update in gradle.properties file, default is false

    • Can be overridden by command option, see (Parameters & Environment Variables)[#parameters-&-environment-variables]
  • refs List of ref configurations, ordered by priority.

    • First matching configuration will be used.

    • considerTagsOnBranches By default, tags pointing at current commit will be ignored if HEAD is attached to a branch.

      • If this option is true tags will always be taken into account.

    • branch(pattern)/tag(pattern) specific ref patch definition.

      • pattern An arbitrary regex to match ref names

        • has to be a full match pattern e.g. main or feature/.+

      • describeTagPattern An arbitrary regex to match tag names for git describe command

        • has to be a full match pattern e.g. v.+)
        • will override global describeTagPattern value

      • version The new version format, see Format Placeholders

      • properties A property definitions to update the value of a property.

        • name The property name
        • value The new value format of the property, see Format Placeholders

          groovy
          properties = [
            "name" : "value",
          ]
          ⚠️ groovy.lang.MetaClass hides properties config field.
          If you need to call a method on properties config field, you need to use the alias field properties_ e.g. properties_.put("name", "value")

          kotlin
          properties = mapOf(
            "name" to "value",
          )            

      • updateGradleProperties Enable(true) or disable(false) version and properties update in gradle.properties file

        • will override global updateGradleProperties value
  • rev Rev configuration will be used if no ref configuration is matching current git situation.

    • same as branch(pattern)/tag(pattern) configuration, except pattern parameter.

Format Placeholders

….slug placeholders means all / characters will be replaced by -.

Final version will be slugified automatically, so no need to use ${….slug} placeholders in version format.

define placeholder default value (placeholder is not defined) like this ${name:-DEFAULT_VALUE}
e.g ${env.BUILD_NUMBER:-0} or ${env.BUILD_NUMBER:-local}

define placeholder overwrite value (placeholder is defined) like this ${name:+OVERWRITE_VALUE}
e.g ${dirty:-SNAPSHOT} resolves to -SNAPSHOT instead of -DIRTY

Placeholders
  • ${env.VARIABLE} Value of environment variable VARIABLE

  • ${property.name} Value of commandline property -Pname=value

  • ${version} version set in build.gradle e.g. '1.0.0-SNAPSHOT'

    • ${version.major} the major version component of ${version} e.g. '1'
      • ${version.major.next} the ${version.major} increased by 1 e.g. '2'
    • ${version.minor} the minor version component of ${version} e.g. '2'
      • ${version.minor.next} the ${version.minor} increased by 1 e.g. '3'
    • ${version.patch} the patch version component of ${version} e.g. '3'
      • ${version.patch.next} the ${version.patch} increased by 1 e.g. '4'
    • ${version.label} the version label of ${version} e.g. 'SNAPSHOT'
      • ${version.label.prefixed} like ${version.label} with label separator e.g. '-SNAPSHOT'
    • ${version.release} like ${version} without version labels like -SNAPSHOT e.g. '1.2.3'

  • ${ref} ${ref.slug} ref name (branch or tag name or commit hash)

  • Ref Pattern Groups

    • Content of regex groups in branch/tag pattern can be addressed like this:

    • ${ref.GROUP_NAME} ${ref.GROUP_NAME.slug}

    • ${ref.GROUP_INDEX} ${ref.GROUP_INDEX.slug}

    • Named Group Example

      groovy

      branch('feature/(?<feature>.+)') {
          version = '${ref.feature}-SNAPSHOT'
      }

      kotlin

      branch("feature/(?<feature>.+)") {
          version = "\${ref.feature}-SNAPSHOT"
      }

  • ${commit} commit hash '0fc20459a8eceb2c4abb9bf0af45a6e8af17b94b'

  • ${commit.short} commit hash (7 characters) e.g. '0fc2045'

  • ${commit.timestamp} commit timestamp (epoch seconds) e.g. '1560694278'

  • ${commit.timestamp.year} commit year e.g. '2021'

  • ${commit.timestamp.year.2digit} 2-digit commit year.g. '21'

  • ${commit.timestamp.month} commit month of year e.g. '12'

  • ${commit.timestamp.day} commit day of month e.g. '23'

  • ${commit.timestamp.hour} commit hour of day (24h)e.g. '13'

  • ${commit.timestamp.minute} commit minute of hour e.g. '59'

  • ${commit.timestamp.second} commit second of minute e.g. '30'

  • ${commit.timestamp.datetime} commit timestamp formatted as yyyyMMdd.HHmmsse.g. '20190616.161442'

  • ${describe} Will resolve to git describe output

  • ${describe.distance} The distance count to last matching tag

  • ${describe.tag} The matching tag of git describe

    • ${describe.tag.version} the tag version determined by regex \d+\.\d+\.\d+
      • ${describe.tag.version.major} the major version component of ${describe.tag.version} e.g. '1'
        • ${describe.tag.version.major.next} the ${describe.tag.version.major} increased by 1 e.g. '2'
      • ${describe.tag.version.minor} the major version component of ${describe.tag.version} e.g. '2'
        • ${describe.tag.version.minor.next} the ${describe.tag.version.minor} increased by 1 e.g. '3'
      • ${describe.tag.version.path} the major version component of ${describe.tag.version} e.g. '3'
        • ${describe.tag.version.patch.next} the ${describe.tag.version.patch} increased by 1 e.g. '4'
  • Describe Tag Pattern Groups

    • Content of regex groups in describeTagPattern can be addressed like this:

    • ${describe.tag.GROUP_NAME} ${describe.tag.GROUP_NAME.slug}

    • ${describe.tag.GROUP_INDEX} ${describe.tag.GROUP_INDEX.slug}

    • Named Group Example

      groovy

      branch('main') {
          describeTagPattern = 'v(?<version>.*)'
          version = '${ref.feature}-SNAPSHOT'
      }

      kotlin

      branch("main") {
          describeTagPattern = "v(?<version>.*)"
          version = "\${describe.tag.version}-SNAPSHOT"
      }

  • ${dirty} If repository has untracked files or uncommitted changes this placeholder will resolve to -DIRTY, otherwise it will resolve to an empty string.

    • ⚠️ Can lead to performance issue on very large projects (10,000+ files)
  • ${dirty.snapshot} Like ${dirty}, but will resolve to -SNAPSHOT

  • ${value} Original value of matching property (Only available within property format)

Parameters & Environment Variables

  • Disable Extension

    • Environment Variables
    • export VERSIONING_DISABLE=true
    • Command Line Parameters
    • gradle … -Dversioning.disable
  • Provide branch or tag name

    • Environment Variables
    • export VERSIONING_GIT_REF=$PROVIDED_REF e.g. refs/heads/main, refs/tags/v1.0.0 or refs/pull/1000/head
    • export VERSIONING_GIT_BRANCH=$PROVIDED_BRANCH_NAME e.g. main or refs/heads/main
    • export VERSIONING_GIT_TAG=$PROVIDED_TAG_NAME e.g. v1.0.0 or refs/tags/v1.0.0
    • Command Line Parameters
    • gradle … -Dgit.ref=$PROVIDED_REF
    • gradle … -Dgit.branch=$PROVIDED_BRANCH_NAME
    • gradle … -Dgit.tag=$PROVIDED_TAG_NAME

    Especially useful for CI builds see Miscellaneous Hints

  • Update gradle.properties file

    • Environment Variables
    • export VERSIONING_UPDATE_GRADLE_PROPERTIES=true
    • Command Line Parameters
    • gradle … -Dversioning.updateGradleProperties

Provided Project Properties

  • git.commit e.g. '0fc20459a8eceb2c4abb9bf0af45a6e8af17b94b'

  • git.commit.short e.g. '0fc2045'

  • git.commit.timestamp e.g. '1560694278'

  • git.commit.timestamp.datetime e.g. '2019-11-16T14:37:10Z'

  • git.ref git.ref.slug HEAD ref name (branch or tag name or commit hash)


Gradle Tasks

  • version
    • Print project version e.g. gradle :version -q

CI/CD Setup

Most CI/CD systems do checkouts in a detached HEAD state so no branch information is available, however they provide environment variables with this information. You can provide those, by using Parameters & Environment Variables.

Native Support

  • GitHub Actions: if $GITHUB_ACTIONS == true, GITHUB_REF is considered
  • GitLab CI: if $GITLAB_CI == true, CI_COMMIT_BRANCH and CI_COMMIT_TAG are considered
  • Circle CI: if $CIRCLECI == true, CIRCLE_BRANCH and CIRCLE_TAG are considered
  • Jenkins: if JENKINS_HOME is set, BRANCH_NAME and TAG_NAME are considered

Manual Setup

Set following environment variables before running your gradle command

export VERSIONING_GIT_REF=$PROVIDED_REF;

$PROVIDED_REF value examples: refs/heads/main, refs/tags/v1.0.0 or refs/pull/1000/head

or

export VERSIONING_GIT_BRANCH=$PROVIDED_BRANCH;
export VERSIONING_GIT_TAG=$PROVIDED_TAG;

$PROVIDED_BRANCH value examples: main, refs/heads/main or refs/pull/1000/head

$PROVIDED_TAG value examples: v1.0.0 or refs/tags/v1.0.0


Miscellaneous Hints

Commandline To Print Project Version

gradle :version -q


Build & Release

  ./gradlew build
  # Publishes this plugin to local Maven
  ./gradlew publishToMavenLocal
  # Publishes this plugin to Gradle Plugin portal.
  ./gradlew login && ./gradlew publishPlugins



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap