maven-git-versioning-extension

maven-git-versioning-extension

Maven Git版本控制扩展插件

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

MavenGit版本控制CI/CD项目配置Github开源项目

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. <br><br>

    • <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/.+ <br><br>
      • <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 <br><br>
      • <version> The new version format, see Format Placeholders

      • <properties>

        • <name>value</name> A property definition to update the value of a property.
          • <name> The property name
          • value The new value format of the property, see Format Placeholders <br><br>
      • <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}<br> e.g ${env.BUILD_NUMBER:-0} or ${env.BUILD_NUMBER:-local}

ℹ define placeholder overwrite value (placeholder is defined) like this ${name:+OVERWRITE_VALUE}<br> 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 <br><br>

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

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

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

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

编辑推荐精选

Trae

Trae

字节跳动发布的AI编程神器IDE

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

下拉加载更多