From e522704417b383462789411e7a30b4fb4adb313a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 04:55:58 +0000 Subject: [PATCH] build(deps): bump the patch group with 7 updates Bumps the patch group with 7 updates: | Package | From | To | | --- | --- | --- | | [org.msgpack:msgpack-core](https://github.com/msgpack/msgpack-java) | `0.9.8` | `0.9.12` | | org.slf4j:slf4j-api | `2.0.16` | `2.0.18` | | org.slf4j:slf4j-simple | `2.0.16` | `2.0.18` | | [org.apache.maven:maven-plugin-api](https://github.com/apache/maven) | `3.9.9` | `3.9.16` | | org.apache.maven:maven-core | `3.9.9` | `3.9.16` | | [org.apache.maven.plugin-tools:maven-plugin-annotations](https://github.com/apache/maven-plugin-tools) | `3.15.1` | `3.15.2` | | [org.apache.maven:maven-compat](https://github.com/apache/maven) | `3.9.9` | `3.9.16` | Updates `org.msgpack:msgpack-core` from 0.9.8 to 0.9.12 - [Release notes](https://github.com/msgpack/msgpack-java/releases) - [Changelog](https://github.com/msgpack/msgpack-java/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/msgpack/msgpack-java/compare/v0.9.8...v0.9.12) Updates `org.slf4j:slf4j-api` from 2.0.16 to 2.0.18 Updates `org.slf4j:slf4j-simple` from 2.0.16 to 2.0.18 Updates `org.apache.maven:maven-plugin-api` from 3.9.9 to 3.9.16 - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.9.9...maven-3.9.16) Updates `org.apache.maven:maven-core` from 3.9.9 to 3.9.16 Updates `org.apache.maven.plugin-tools:maven-plugin-annotations` from 3.15.1 to 3.15.2 - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.15.1...maven-plugin-tools-3.15.2) Updates `org.apache.maven:maven-compat` from 3.9.9 to 3.9.16 - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.9.9...maven-3.9.16) --- updated-dependencies: - dependency-name: org.msgpack:msgpack-core dependency-version: 0.9.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.slf4j:slf4j-api dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.slf4j:slf4j-simple dependency-version: 2.0.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.apache.maven:maven-plugin-api dependency-version: 3.9.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.apache.maven:maven-core dependency-version: 3.9.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations dependency-version: 3.15.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: org.apache.maven:maven-compat dependency-version: 3.9.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] --- python-embed-maven-plugin/build.gradle | 8 ++++---- python-embed-runtime/build.gradle | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/python-embed-maven-plugin/build.gradle b/python-embed-maven-plugin/build.gradle index 8cfd51e..29eb1f6 100644 --- a/python-embed-maven-plugin/build.gradle +++ b/python-embed-maven-plugin/build.gradle @@ -48,14 +48,14 @@ repositories { dependencies { implementation "io.github.howtis:python-embed-build-common:${project.findProperty('releaseVersion') ?: '1.0.2'}" - implementation 'org.apache.maven:maven-plugin-api:3.9.9' - implementation 'org.apache.maven:maven-core:3.9.9' - implementation 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.15.1' + implementation 'org.apache.maven:maven-plugin-api:3.9.16' + implementation 'org.apache.maven:maven-core:3.9.16' + implementation 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.15.2' testImplementation platform('org.junit:junit-bom:5.11.4') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - testImplementation 'org.apache.maven:maven-compat:3.9.9' + testImplementation 'org.apache.maven:maven-compat:3.9.16' testImplementation 'org.apache.maven.plugin-testing:maven-plugin-testing-harness:3.3.0' testImplementation 'org.mockito:mockito-core:5.15.2' } diff --git a/python-embed-runtime/build.gradle b/python-embed-runtime/build.gradle index e407300..2c6e3fd 100644 --- a/python-embed-runtime/build.gradle +++ b/python-embed-runtime/build.gradle @@ -5,13 +5,13 @@ plugins { version = project.findProperty('releaseVersion') ?: '1.0.2-SNAPSHOT' dependencies { - implementation 'org.msgpack:msgpack-core:0.9.8' - implementation 'org.slf4j:slf4j-api:2.0.16' + implementation 'org.msgpack:msgpack-core:0.9.12' + implementation 'org.slf4j:slf4j-api:2.0.18' testImplementation platform('org.junit:junit-bom:5.11.4') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - testImplementation 'org.slf4j:slf4j-simple:2.0.16' + testImplementation 'org.slf4j:slf4j-simple:2.0.18' } test {