Skip to content

Update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.2.0 - #1383

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/git-commit-id-maven.version
Open

Update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.2.0#1383
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/git-commit-id-maven.version

Conversation

@renovate

@renovate renovate Bot commented Mar 31, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
io.github.git-commit-id:git-commit-id-maven-plugin 9.0.29.2.0 age confidence

Release Notes

git-commit-id/git-commit-id-maven-plugin (io.github.git-commit-id:git-commit-id-maven-plugin)

v9.2.0: Version 9.2.0

Compare Source

Version 9.2.0 is finally there and includes various bug-fixes and improvements :-)

New Features / Bug-Fixes:

The main key-aspects that have been improved or being worked on are the following:

Getting the latest release

The plugin is available from Maven Central (see here), so you don't have to configure any additional repositories to use this plugin. All you need to do is to configure it inside your project as dependency:

<dependency>
    <groupId>io.github.git-commit-id</groupId>
    <artifactId>git-commit-id-maven-plugin</artifactId>
    <version>9.2.0</version>
</dependency>

Getting the latest snapshot (build automatically)

If you can't wait for the next release, you can also get the latest snapshot version from sonatype, that is being deployed automatically by github actions:

<pluginRepositories>
    <pluginRepository>
        <id>sonatype-snapshots</id>
        <name>Sonatype Snapshots</name>
         <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </pluginRepository>
</pluginRepositories>

Even though the github actions will only deploy a new snapshot once all tests have finished, it is recommended to rely on the released and more stable version.

Known Issues / Limitations:

  • This plugin is unfortunately not working with Heroku which is due to the fact how Heroku works. In summary Heroku does not copy over the .git-repository but in order to determine the git properties this plugin relies on the fact that it has access to the git-repository. A somewhat workaround to get some information is outlined in ktoso/maven-git-commit-id-plugin#279 (comment)
  • Using maven's plugin prefix resolution (e.g. mvn com.test.plugins:myPlugin:myMojo) might result in unresolved properties even with <injectAllReactorProjects>true</injectAllReactorProjects>. Please refer to git-commit-id/maven-git-commit-id-plugin#287 or git-commit-id/maven-git-commit-id-plugin#413 (comment) for details and potential workarounds

Reporting Problems

If you find any problem with this plugin, feel free to report it here

Full Changelog: git-commit-id/git-commit-id-maven-plugin@v9.1.0...v9.2.0

v9.1.0: Version 9.1.0

Compare Source

Version 9.1.0 is finally there and includes various bug-fixes and improvements :-)

New Features / Bug-Fixes:

The main key-aspects that have been improved or being worked on are the following:

  • bump several plugins
    • bump io.github.git-commit-id:git-commit-id-plugin-core from 6.0.0 to 6.1.5
    • bump commons-io:commons-io from 2.19.0 to 2.21.0 (scope test)
    • bump org.junit.jupiter:* from 5.12.2 to 5.13.4 (scope test)
    • bump org.mockito:mockito-core from 5.18.0 to 5.23.0 (scope test)
    • bump org.assertj:assertj-core from 3.27.3 to 3.27.7 (scope test)
  • bump several maven plugins
    • bump org.apache.maven.plugins:maven-antrun-plugin from 3.1.0 to 3.2.0
    • bump org.apache.maven.plugins:maven-assembly-plugin from 3.7.1 to 3.8.0
    • bump org.apache.maven.plugins:maven-clean-plugin from 3.4.1 to 3.5.0
    • bump org.apache.maven.plugins:maven-compiler-plugin from 3.14.0 to 3.15.0
    • bump org.apache.maven.plugins:maven-dependency-plugin from 3.8.1 to 3.10.0
    • bump org.apache.maven.plugins:maven-enforcer-plugin from 3.5.0 to 3.6.2
    • bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.7 to 3.2.8
    • bump org.apache.maven.plugins:maven-jar-plugin from 3.4.2 to 3.5.0
    • bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.12.0
    • bump org.apache.maven.plugins:maven-plugin-plugin from 3.15.1 to 3.15.2
    • bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.3.1
    • bump org.apache.maven.plugins:maven-resources-plugin from 3.3.1 to 3.5.0
    • bump org.apache.maven.plugins:maven-source-plugin from 3.3.1 to 3.4.0
    • bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.3 to 3.5.5
    • bump org.codehaus.mojo:versions-maven-plugin from 2.18.0 to 2.21.0
    • bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.6.3
    • bump org.jacoco:jacoco-maven-plugin from 0.8.13 to 0.8.14
    • bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.15.1 to 3.15.2

Getting the latest release

The plugin is available from Maven Central (see here), so you don't have to configure any additional repositories to use this plugin. All you need to do is to configure it inside your project as dependency:

<dependency>
    <groupId>io.github.git-commit-id</groupId>
    <artifactId>git-commit-id-maven-plugin</artifactId>
    <version>9.1.0</version>
</dependency>

Getting the latest snapshot (build automatically)

If you can't wait for the next release, you can also get the latest snapshot version from sonatype, that is being deployed automatically by github actions:

<pluginRepositories>
    <pluginRepository>
        <id>sonatype-snapshots</id>
        <name>Sonatype Snapshots</name>
         <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    </pluginRepository>
</pluginRepositories>

Even though the github actions will only deploy a new snapshot once all tests have finished, it is recommended to rely on the released and more stable version.

Known Issues / Limitations:

  • This plugin is unfortunately not working with Heroku which is due to the fact how Heroku works. In summary Heroku does not copy over the .git-repository but in order to determine the git properties this plugin relies on the fact that it has access to the git-repository. A somewhat workaround to get some information is outlined in ktoso/maven-git-commit-id-plugin#279 (comment)
  • Using maven's plugin prefix resolution (e.g. mvn com.test.plugins:myPlugin:myMojo) might result in unresolved properties even with <injectAllReactorProjects>true</injectAllReactorProjects>. Please refer to git-commit-id/maven-git-commit-id-plugin#287 or git-commit-id/maven-git-commit-id-plugin#413 (comment) for details and potential workarounds

Reporting Problems

If you find any problem with this plugin, feel free to report it here

Full Changelog: git-commit-id/git-commit-id-maven-plugin@v9.0.2...v9.1.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested review from Copilot and removed request for Copilot March 31, 2026 12:57
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from a6a5ea3 to bf353d9 Compare April 1, 2026 10:48
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 1, 2026 10:48
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from bf353d9 to 56e8808 Compare April 1, 2026 12:08
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 1, 2026 12:08
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 56e8808 to 7c12d08 Compare April 2, 2026 20:30
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 2, 2026 20:30
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 7c12d08 to a794ed0 Compare April 3, 2026 07:22
@renovate
renovate Bot removed the request for review from Copilot April 3, 2026 07:22
@renovate renovate Bot changed the title Update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.1.0 Update dependency io.github.git-commit-id:git-commit-id-maven-plugin to v9.2.0 Apr 3, 2026
Copilot AI review requested due to automatic review settings April 4, 2026 07:43
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from a794ed0 to 3b22122 Compare April 4, 2026 07:43
@renovate
renovate Bot removed the request for review from Copilot April 4, 2026 07:43
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 3b22122 to 74acd8e Compare April 5, 2026 08:39
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 5, 2026 08:39
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 74acd8e to 7113d5f Compare April 13, 2026 10:13
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 13, 2026 10:13
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 7113d5f to 2e27b34 Compare April 13, 2026 14:56
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 13, 2026 14:56
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 2e27b34 to f24b88a Compare April 16, 2026 11:20
@renovate
renovate Bot removed the request for review from Copilot April 16, 2026 11:20
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 97faa97 to 188df22 Compare April 18, 2026 19:40
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 18, 2026 19:40
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 188df22 to 0f3719e Compare April 20, 2026 16:23
@renovate
renovate Bot removed the request for review from Copilot April 20, 2026 16:23
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 0f3719e to a1c8bc5 Compare April 20, 2026 19:21
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 20, 2026 19:21
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from a1c8bc5 to 6c46a10 Compare April 20, 2026 20:03
@renovate
renovate Bot removed the request for review from Copilot April 20, 2026 20:03
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 6c46a10 to b97caa6 Compare April 20, 2026 21:12
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 20, 2026 21:12
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from b97caa6 to 27f81c4 Compare April 21, 2026 04:44
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 21, 2026 04:44
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 27f81c4 to fe812cb Compare April 22, 2026 11:25
@renovate
renovate Bot removed the request for review from Copilot April 22, 2026 11:25
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from fe812cb to 67969d8 Compare April 23, 2026 14:51
@renovate
renovate Bot requested review from Copilot and removed request for Copilot April 23, 2026 14:51
@renovate
renovate Bot force-pushed the renovate/git-commit-id-maven.version branch from 67969d8 to 252c7c5 Compare April 28, 2026 18:20
@sonarqubecloud

sonarqubecloud Bot commented May 5, 2026

Copy link
Copy Markdown

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

@sonarqubecloud

sonarqubecloud Bot commented Jun 5, 2026

Copy link
Copy Markdown

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.

@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant