• Stars
    star
    278
  • Rank 148,080 (Top 3 %)
  • Language
    Java
  • License
    GNU General Publi...
  • Created almost 8 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This extension will set project version, based on current Git branch or tag.

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

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.6.5</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.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 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 mvn 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

mvn help:evaluate -Dexpression=project.version -q -DforceStdout

Reproducible builds

The maven reproducible builds feature can be easily supported with this extension e.g.

<ref type="branch">
  <pattern>.+</pattern>
  <properties>
    <project.build.outputTimestamp>${commit.timestamp}</project.build.outputTimestamp>
  </properties>
</ref>

Build & Release

gpg --import private.key
gpg --list-keys
  ./mvnw verify
  # Publishes this plugin to local Maven
  ./mvnw install
  # Run integration tests after install, 
  # integration tests will run with LATEST version of extension installed
  ./mvnw failsafe:integration-test
  # Publishes this plugin to OSS Nexus.
  GPG_TTY=$(tty) ./mvnw clean deploy -P release -Dgpg.keyname=???
Debug
mvn help:evaluate -Dexpression=project.version -Dorg.slf4j.simpleLogger.log.me.qoomon.maven.gitversioning=debug

More Repositories

1

docker-host

A docker sidecar container to forward all traffic to local docker host or any other host
Shell
1,027
star
2

git-conventional-commits

Git Conventional Commits Util to generate Semantic Version and Markdown Change Log and Validate Commit Messag
JavaScript
211
star
3

aws-s3-bucket-browser

Single page application to browse AWS S3 bucket content
HTML
181
star
4

aws-ssm-ec2-proxy-command

AWS SSM EC2 SSH Proxy Command
PowerShell
180
star
5

otp-authenticator-webapp

A 'Google Authenticator' like Single Page Application
JavaScript
93
star
6

zsh-lazyload

zsh plugin for lazy load commands and speed up start up time of zsh
Shell
78
star
7

gradle-git-versioning-plugin

This extension will set project version, based on current Git branch or tag.
Java
77
star
8

Jira-Issue-Card-Printer

Beautiful Issue Card Printer
JavaScript
69
star
9

banking-swift-messages-java

Banking SWIFT Library, MT Format Message Parser Writer SWIFT(Society for Worldwide Interbank Financial Telecommunication)
Java
29
star
10

time-timer-webapp

A CountDown and CountUp Timer
JavaScript
25
star
11

smart-life-webapp

JavaScript
20
star
12

my-zsh

handy and beautiful ZSH config
Shell
17
star
13

github-actions-access-manager

Manage access from GitHub actions workflows.
JavaScript
11
star
14

zjump

Simplify zsh directory navigation; jump to already visited, parent or sub folders.
Shell
10
star
15

zgem

zsh dependency manager ๐Ÿš ๐Ÿ’Ž
Shell
10
star
16

unchecked-exceptions-java

Throw any Java Exception anywhere without the need of catching them nor wrapping them into RuntimeException
Java
7
star
17

aws-session

A CLI to generate and store session credentials in ~/.aws/credentials file, based on ~/.aws/config profiles
Python
6
star
18

aws-ec2-ssh-iam

AWS IAM managed EC2 SSH access
JavaScript
4
star
19

vercel-cors-proxy

JavaScript
3
star
20

gmail-rss-feed

Google Scripts Project to generate a RSS feed based on labeled emails
JavaScript
3
star
21

chrome-tab-multiselect-extension

JavaScript
3
star
22

meeting-cash-creep

Vue
3
star
23

userscript-kleinanzeigen-duplicate-ad

JavaScript
3
star
24

actions-publish-to-github-pages

GitHub Action to Publish Directory to GitHub Pages
Shell
3
star
25

chrome-tab-shift-extension

This extension will add a shortcuts to shift tabs.
JavaScript
2
star
26

domain-value-java

Domain Values
Java
2
star
27

junit-extension

Java JUnit Utils and Extentions
Java
2
star
28

zsh-theme-qoomon

zsh prompt theme
Shell
2
star
29

qoomon

About
2
star
30

zsh-history-search

zsh-history-search
Shell
2
star
31

aws-configure

A CLI to configure AWS named profiles in ~/.aws/config and ~/.aws/credentials files
Python
2
star
32

threema-web-desktop-app

Threema Standalone Web App with Dark and Light Mode Support
JavaScript
2
star
33

userscript-jira-dependency-indicators

JavaScript
2
star
34

kotlin-examples

Kotlin
2
star
35

userscript-aws-visual-account-indicator

This userscript reads the aws-userInfo cookie and adds account name and color indicator
JavaScript
2
star
36

aws-lambda-gitlab-webhook-to-datadog

JavaScript
2
star
37

userscript-jira-colored-labels

JavaScript
2
star
38

maven-enforcer-rules

maven-enforcer-rules
Java
2
star
39

chrome-tab-toggle-extension

This extension will add a shortcut to toggle through recent active tabs.
JavaScript
2
star
40

.github

1
star
41

chrome-new-tab-extension

Open neat blank page as 'New Tab' Page
HTML
1
star
42

chrome-search-engine-blocker-extension

Prevents Chrome from adding new search engines by opensearch link and search auto detection
JavaScript
1
star
43

diceware-webapp

HTML
1
star
44

userscript-disable-open-search

JavaScript
1
star
45

yolo-secret

TypeScript
1
star
46

chrome-show-password-extension

JavaScript
1
star
47

actions--set-env

TypeScript
1
star
48

cdn

cdn
JavaScript
1
star
49

self-signed-https-proxy

Shell
1
star
50

passphrase-generator

dice passphrase generator
Shell
1
star
51

google-chrome-launcher

Shell
1
star
52

chrome-tab-duplicate-extension

This extension will add a shortcut to duplicate tab.
JavaScript
1
star