Project Icon

maven-git-versioning-extension

Maven Git版本控制扩展插件

Maven Git版本控制扩展插件根据Git状态自动设置项目版本和属性,无需修改POM文件。支持分支、标签和提交的灵活配置,可替代Maven Release插件,简化版本管理。适用于Java 11+和Maven 3.6.4+项目,提供详细配置说明和使用指南。

Maven Git Versioning Extension Sparkline

Maven Central Changelog Build Workflow LGTM Grade

ℹ Also available as Gradle Plugin

Example

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

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

Requirements

* ⚠️ minimal required java version is 11

  • ⚠️ minimal required maven version is 3.6.4

Usage

⚠️ If you're using IntelliJ have a look at IntelliJ Setup Instructions

Add Extension to Maven Project

create or update ${rootProjectDir}/.mvn/extensions.xml file


<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">

    <extension>
        <groupId>me.qoomon</groupId>
        <artifactId>maven-git-versioning-extension</artifactId>
        <version>9.8.1</version>
    </extension>

</extensions>

Configure Extension

ℹ Consider CI/CD section when running this extension in a CI/CD environment

Create ${rootProjectDir}/.mvn/maven-git-versioning-extension.xml.

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

Example: maven-git-versioning-extension.xml

<configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-9.4.0.xsd">

    <refs>
        <ref type="branch">
            <pattern>.+</pattern>
            <version>${ref}-SNAPSHOT</version>
            <properties>
                <foo>${ref}</foo>
            </properties>
        </ref>

        <ref type="tag">
            <pattern><![CDATA[v(?<version>.*)]]></pattern>
            <version>${ref.version}</version>
        </ref>
    </refs>

    <!-- optional fallback configuration in case of no matching ref configuration-->
    <rev>
        <version>${commit}</version>
    </rev>

</configuration>

Configuration Elements

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

  • <projectVersionPattern> An arbitrary regex to match project version, matching groups can be used as Format Placeholders (has to be a full match pattern)

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

    • has to be a full match pattern e.g. v(.+), default is .*
  • <describeTagFirstParent> Enable(true) or disable(false) following only the first parent in a merge commit

    • default is true
  • <updatePom> Enable(true)/disable(false) version and properties update in original pom file, default is false

  • <refs considerTagsOnBranches="BOOLEAN"> 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.

    • <ref type="TYPE"> specific ref patch definition.

      • required type Ref type indicates which kind of ref will be matched against pattern, can be branch or tag

      • <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
      • <describeTagFirstParent> Enable(true) or disable(false) following only the first parent in a merge commit

        • default is true

      • <version> The new version format, see Format Placeholders

      • <properties>

        • <name>value</name> A property definition to update the value of a property.
      • <userProperties>

        • <name>value</name> A property definition to add a user property to the maven session, active during the build. UserProperties with the same name of a property in the pom or this configuration file will take precedence as that is how maven handles user properties.
        <userProperties>
            <test.property>${ref}</test.property>
        </userProperties>
        
      • <updatePom> Enable(true) or disable(false) version and properties update in original pom file

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

    • same as <ref> configuration, except type attribute and <pattern> element.
  • <relatedProjects> Add external projects as related project to update their versions as well.

    <relatedProjects>
        <project>
            <groupId>me.qoomon</groupId>
            <artifactId>base</artifactId>
        </project>
    </relatedProjects>
    

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 -Dname=value

  • ${version} <version> set in pom.xml e.g. '1.2.3-SNAPSHOT'

    • ${version.core} the core version component of ${version} e.g. '1.2.3'
    • ${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'
  • Project Version Pattern Groups

    • Content of regex groups in <projectVersionPattern> can be addressed like this:
    • ${version.GROUP_NAME}
    • ${version.GROUP_INDEX}
    • Named Group Example
      <configuration>
        <projectVersionPattern><![CDATA[^.+-(?<environment>.+)-SNAPSHOT$]]></projectVersionPattern>
      
        <refs>
          <ref type="branch">
            <version>${version.environment}-SNAPSHOT</version>
          </ref>
        </refs>
      </configuration>
      

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

  • Ref Pattern Groups

    • Content of regex groups in <ref><pattern> can be addressed like this:
    • ${ref.GROUP_NAME} ${ref.GROUP_NAME.slug}
    • ${ref.GROUP_INDEX} ${ref.GROUP_INDEX.slug}
    • Named Group Example
      <ref type="branch">
          <pattern><![CDATA[feature/(?<feature>.+)]]></pattern>
          <version>${ref.feature}-SNAPSHOT</version>
      </ref>
      

  • ${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'

  • ${build.timestamp} maven-build-timestamp (epoch seconds) e.g. '1560694278'

  • ${build.timestamp.year} maven-build-timestamp year e.g. '2021'

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

  • ${build.timestamp.month} maven-build-timestamp month of year e.g. '12'

  • ${build.timestamp.day} maven-build-timestamp day of month e.g. '23'

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

  • ${build.timestamp.minute} maven-build-timestamp minute of hour e.g. '59'

  • ${build.timestamp.second} maven-build-timestamp second of minute e.g. '30'

  • ${build.timestamp.datetime} maven-build-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.distance.snapshot} Empty string on matching tag, -SNAPSHOT if describe.distance > 0

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

    • ${describe.tag.version} the tag version determined by regex (?<version>(?<core>(?<major>\d+)(?:\.(?<minor>\d+)(?:\.(?<patch>\d+))?)?)(?:-(?<label>.*))?)
      • ${describe.tag.version.core} the core version component of ${describe.tag.version} e.g. '1.2.3'
      • ${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 minor 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.patch} the patch 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.version.patch.plus.describe.distance} the ${describe.tag.version.patch} increased by ${describe.distance} e.g. '2'
        • ${describe.tag.version.patch.next.plus.describe.distance} the ${describe.tag.version.patch.next} increased by ${describe.distance} e.g. '3'
      • ${describe.tag.version.label} the label version component of ${describe.tag.version} e.g. 'SNAPSHOT'
        • ${describe.tag.version.label.next} the ${describe.tag.version.label} converted to an integer and increased by 1 e.g. '6'
        • ${describe.tag.version.label.plus.describe.distance} the ${describe.tag.version.label} increased by ${describe.distance} e.g. '2'
        • ${describe.tag.version.label.next.plus.describe.distance} the ${describe.tag.version.label.next} increased by ${describe.distance} e.g. '3'
  • 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
      <ref type="branch">
          <pattern>main</pattern>
          <describeTagPattern><![CDATA[v(?<name>.*)]]></describeTagPattern>
          <version>${describe.tag.name}-SNAPSHOT</version>
      </ref>
      

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

    • ℹ May 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
    • mvn … -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
    • mvn … -Dgit.ref=$PROVIDED_REF
    • mvn … -Dgit.branch=$PROVIDED_BRANCH_NAME
    • mvn … -Dgit.tag=$PROVIDED_TAG_NAME

    ℹ Especially useful for CI builds see Miscellaneous Hints

  • Update pom.xml

    • Environment Variables
    • export VERSIONING_UPDATE_POM=true
    • Command Line Parameters
    • mvn … -Dversioning.updatePom

Provided Project Properties

  • git.worktree absolute path of git worktree directory

IDE Setup

IntelliJ - Multi Modules Projects

For a flawless experience you need to disable this extension during project import, otherwise you'll get errors for modules depending on another module.
To disable this extension during import add following Maven Importer VM options (Preferences > Build, Execution, Deployment > Build Tools > Maven > Importing > VM options for importer) -Dversioning.disable=true

Related Issues

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, CI_COMMIT_TAG and CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号