ℹ Also available as Gradle Plugin

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
pom.xml* ⚠️ minimal required java version is 11
3.6.4⚠️ If you're using IntelliJ have a look at IntelliJ Setup Instructions
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>
ℹ 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>
<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
v(.+), default is .*<describeTagFirstParent> Enable(true) or disable(false) following only the first parent in a merge commit
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
main or feature/.+
<br><br><describeTagPattern> An arbitrary regex to match tag names for git describe command
v.+)<describeTagPattern> value<describeTagFirstParent> Enable(true) or disable(false) following only the first parent in a merge commit
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 namevalue 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.
<name> The property namevalue The new value format of the property, see Format Placeholders<userProperties> <test.property>${ref}</test.property> </userProperties>
<updatePom> Enable(true) or disable(false) version and properties update in original pom file
<updatePom> value<rev> Rev configuration will be used if no ref configuration is matching current git situation.
<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>
ℹ ….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
${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
<projectVersionPattern> can be addressed like this:${version.GROUP_NAME}${version.GROUP_INDEX}<br><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
<ref><pattern> can be addressed like this:${ref.GROUP_NAME} ${ref.GROUP_NAME.slug}${ref.GROUP_INDEX} ${ref.GROUP_INDEX.slug}<br><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'
<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
<describeTagPattern> can be addressed like this:${describe.tag.GROUP_NAME} ${describe.tag.GROUP_NAME.slug}${describe.tag.GROUP_INDEX} ${describe.tag.GROUP_INDEX.slug}<br><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.
${dirty.snapshot} Like ${dirty}, but will resolve to -SNAPSHOT
<br><br>
${value} Original value of matching property (Only available within property format)
Disable Extension
export VERSIONING_DISABLE=truemvn … -Dversioning.disableProvide branch or tag name
export VERSIONING_GIT_REF=$PROVIDED_REF e.g. refs/heads/main, refs/tags/v1.0.0 or refs/pull/1000/headexport VERSIONING_GIT_BRANCH=$PROVIDED_BRANCH_NAME e.g. main or refs/heads/mainexport VERSIONING_GIT_TAG=$PROVIDED_TAG_NAME e.g. v1.0.0 or refs/tags/v1.0.0mvn … -Dgit.ref=$PROVIDED_REFmvn … -Dgit.branch=$PROVIDED_BRANCH_NAMEmvn … -Dgit.tag=$PROVIDED_TAG_NAMEℹ Especially useful for CI builds see Miscellaneous Hints
Update pom.xml
export VERSIONING_UPDATE_POM=truemvn … -Dversioning.updatePomgit.worktree absolute path of git worktree directoryFor 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
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.
$GITHUB_ACTIONS == true, GITHUB_REF is considered$GITLAB_CI == true, CI_COMMIT_BRANCH, CI_COMMIT_TAG and CI_MERGE_REQUEST_SOURCE_BRANCH_NAME

职场AI,就用扣子
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客 生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!


多风格AI绘画神器
堆友平台由阿里巴巴设计团队创建,作为一款AI驱动的设计工具,专为设计师提供一站式增长服务。功能覆盖海量3D素材、AI绘画、实时渲染以及专业抠图,显著提升设计品质和效率。平台不仅提供工具,还是一个促进创意交流和个人发展的空间,界面友好,适合所有级别的设计师和创意工作者。


零代码AI应用开发平台
零代码AI应用开发平台,用户只需一句话简单描述需求,AI能自动生成小程序、APP或H5网页应用,无需编写代码。


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具


最适合小白的AI自动化工作流平台
无需编码,轻松生成可复用、可变现的AI自动化工作流

大模型驱动的Excel数据处理工具
基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。


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


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


AI一键生成PPT,就用博思AIPPT!
博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号