This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch maven-4.0.x
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/maven-4.0.x by this push:
new 126a27e3a8 Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to
0.11.4 (#12067)
126a27e3a8 is described below
commit 126a27e3a8a7017582b06bd5542f3dce3c272445
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu May 21 15:29:30 2026 +0200
Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.11.4 (#12067)
* Bump eu.maveniverse.maven.mimir:testing from 0.11.2 to 0.11.4
Bumps
[eu.maveniverse.maven.mimir:testing](https://github.com/maveniverse/mimir) from
0.11.2 to 0.11.4.
- [Release notes](https://github.com/maveniverse/mimir/releases)
-
[Commits](https://github.com/maveniverse/mimir/compare/release-0.11.2...release-0.11.4)
---
updated-dependencies:
- dependency-name: eu.maveniverse.maven.mimir:testing
dependency-version: 0.11.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
* Align MIMIR_VERSION with testing dependency
Co-Authored-By: Claude Opus 4.6 <[email protected]>
* Add cross-reference comments between mimir versions
Co-Authored-By: Claude Opus 4.6 <[email protected]>
* Add CI check for Mimir version alignment between pom.xml and workflow
Co-Authored-By: Claude Opus 4.6 <[email protected]>
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Guillaume Nodet <[email protected]>
Co-authored-by: Claude Opus 4.6 <[email protected]>
---
.github/workflows/maven.yml | 12 +++++++++++-
pom.xml | 3 ++-
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 555df17614..fb4275028e 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -32,7 +32,8 @@ concurrency:
permissions: {}
env:
- MIMIR_VERSION: 0.11.2
+ # Keep in sync with mimir testing version in pom.xml
+ MIMIR_VERSION: 0.11.4
MIMIR_BASEDIR: ~/.mimir
MIMIR_LOCAL: ~/.mimir/local
MAVEN_OPTS: -XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=./target/java_heapdump.hprof
@@ -53,6 +54,15 @@ jobs:
with:
persist-credentials: false
+ - name: Verify Mimir version alignment
+ shell: bash
+ run: |
+ POM_VERSION=$(grep -A2 'eu.maveniverse.maven.mimir' pom.xml | grep
'<version>' | sed 's/.*<version>\(.*\)<\/version>.*/\1/')
+ if [ "$POM_VERSION" != "${{ env.MIMIR_VERSION }}" ]; then
+ echo "::error::MIMIR_VERSION (${{ env.MIMIR_VERSION }}) does not
match pom.xml ($POM_VERSION) — update MIMIR_VERSION in this workflow"
+ exit 1
+ fi
+
- name: Prepare Mimir for Maven 3.x
shell: bash
run: |
diff --git a/pom.xml b/pom.xml
index dd41346d22..4b83c628e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -697,10 +697,11 @@ under the License.
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmhVersion}</version>
</dependency>
+ <!-- Keep version in sync with MIMIR_VERSION in
.github/workflows/maven.yml -->
<dependency>
<groupId>eu.maveniverse.maven.mimir</groupId>
<artifactId>testing</artifactId>
- <version>0.11.2</version>
+ <version>0.11.4</version>
</dependency>
</dependencies>
<!--bootstrap-start-comment-->