Skip to content

chore(deps-dev): bump io.github.git-commit-id:git-commit-id-maven-plugin from 9.1.0 to 10.0.0#3270

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/io.github.git-commit-id-git-commit-id-maven-plugin-10.0.0
Open

chore(deps-dev): bump io.github.git-commit-id:git-commit-id-maven-plugin from 9.1.0 to 10.0.0#3270
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/io.github.git-commit-id-git-commit-id-maven-plugin-10.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Bumps io.github.git-commit-id:git-commit-id-maven-plugin from 9.1.0 to 10.0.0.

Release notes

Sourced from io.github.git-commit-id:git-commit-id-maven-plugin's releases.

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

⚠️ This is a potentially breaking release. Read the release-notes carefully ⚠️

Potential Breaking changes:

The main key-aspects that might cause a breakage when migrating to the new version:

  • #913 / #914: Require Maven 3.9.0 [Maven 3.6.3 is EOL] ⚠️

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>10.0.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
  • 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 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.2.0...v10.0.0

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:

... (truncated)

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Apr 6, 2026
@dependabot dependabot bot requested review from Copilot and removed request for Copilot April 6, 2026 03:33
@openshift-ci openshift-ci bot requested review from metacosm and xstefank April 6, 2026 03:33
@xstefank
Copy link
Copy Markdown
Collaborator

xstefank commented Apr 8, 2026

@csviri did we ever have no-apt profile? Can I remove this profile from actions?

@csviri csviri force-pushed the dependabot/maven/io.github.git-commit-id-git-commit-id-maven-plugin-10.0.0 branch from 4d9f287 to 394b662 Compare April 8, 2026 08:20
Copilot AI review requested due to automatic review settings April 8, 2026 08:20
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This pull request bumps the io.github.git-commit-id:git-commit-id-maven-plugin dependency from version 9.1.0 to 10.0.0. This is a development dependency used to inject git commit information during the build process of the Java Operator SDK.

Changes:

  • Updated git-commit-id-maven-plugin.version from 9.1.0 to 10.0.0 in the parent pom.xml properties

<maven-deploy-plugin.version>3.0.0</maven-deploy-plugin.version>
<maven-install-plugin.version>3.1.4</maven-install-plugin.version>
<git-commit-id-maven-plugin.version>9.1.0</git-commit-id-maven-plugin.version>
<git-commit-id-maven-plugin.version>10.0.0</git-commit-id-maven-plugin.version>
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

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

The git-commit-id-maven-plugin version 10.0.0 requires Maven 3.9.0 or later according to the release notes (see https://github.com/git-commit-id/git-commit-id-maven-plugin/releases/tag/v10.0.0). However, the Maven wrapper is currently configured to use Maven 3.8.4 in .mvn/wrapper/maven-wrapper.properties. This will cause build failures when the plugin executes. The Maven wrapper distributionUrl must be updated to Maven 3.9.0 or later to support this version bump.

Suggested change
<git-commit-id-maven-plugin.version>10.0.0</git-commit-id-maven-plugin.version>
<git-commit-id-maven-plugin.version>9.0.1</git-commit-id-maven-plugin.version>

Copilot uses AI. Check for mistakes.
@csviri
Copy link
Copy Markdown
Collaborator

csviri commented Apr 8, 2026

no-apt profile

What is a no-apt profile? :)

@xstefank
Copy link
Copy Markdown
Collaborator

xstefank commented Apr 8, 2026

well, you should tell me that :D https://github.com/operator-framework/java-operator-sdk/blob/main/.github/workflows/integration-tests.yml#L56, opening PR :D

@xstefank
Copy link
Copy Markdown
Collaborator

xstefank commented Apr 8, 2026

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 8, 2026

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

@xstefank
Copy link
Copy Markdown
Collaborator

xstefank commented Apr 8, 2026

@dependabot recreate

Bumps [io.github.git-commit-id:git-commit-id-maven-plugin](https://github.com/git-commit-id/git-commit-id-maven-plugin) from 9.1.0 to 10.0.0.
- [Release notes](https://github.com/git-commit-id/git-commit-id-maven-plugin/releases)
- [Commits](git-commit-id/git-commit-id-maven-plugin@v9.1.0...v10.0.0)

---
updated-dependencies:
- dependency-name: io.github.git-commit-id:git-commit-id-maven-plugin
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/maven/io.github.git-commit-id-git-commit-id-maven-plugin-10.0.0 branch from 394b662 to 0aaf58d Compare April 8, 2026 12:31
@xstefank
Copy link
Copy Markdown
Collaborator

xstefank commented Apr 8, 2026

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 8, 2026

Looks like this PR is already up-to-date with main! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

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

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants