ℹ 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

稳定高效的流量提升解决方案,助力品牌曝光
稳定高效的流量提升解决方案,助力品牌曝光


最新版Sora2模型免费使用,一键生成无水印视频
最新版Sora2模型免费使用,一键生成无水印视频


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


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


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


最强AI数据分析助手
小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。


像人一样思考的AI智能体
imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并 且交付结果的AI智能体。


AI数字人视频创作平台
Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。


一站式AI创作平台
提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作


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

微信扫一扫关注公众号