-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error while resolving import dependencies #299
Comments
This dependency is from 2014, and appears to be referencing a JAR that should probably be a dependency on anything newer than Java 8 or 9, as mentioned in ehcache/ehcache3#2881 which is linked. Are you able to update the dependency to a newer version of JAXB by overriding it (e.g. excludes on ehcache)? The newest version appears to be this: <dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>4.0.5</version>
</dependency> If this isn't possible, could you post the output of We rely heavily on the Eclipse Aether APIs that Maven exposes to perform dependency resolution on project dependencies, and it appears to be that which is failing. You can turn off the loading of protobuf sources from dependencies using a configuration flag, which I believe would prevent this issue by avoiding the attempted resolution of this dependency: <configuration>
<ignoreProjectDependencies>true</ignoreProjectDependencies>
</configuration> Or you can instruct the plugin to only consider dependencies directly specified for the project in the import path: <configuration>
<dependencyResolutionDepth>DIRECT</dependencyResolutionDepth>
</configuration> The issue is that this plugin will default to attempting to index all dependencies of your project to attempt to find Let me know if that is any help. If not, I can try to take a closer look on my side to find a way to resolve this for you on the plugin side. I am not sure whether it will be possible to detect and suppress but there are a few possible things I can look into on my side. I can take a look this afternoon. |
It appears the dependency in question causing this issue is referenced transitive via runtime scope in ehcache (https://repo1.maven.org/maven2/org/ehcache/ehcache/3.10.8/ehcache-3.10.8.pom), I wouldn't expect the plugin to be attempting to resolve this. Looking at how I set this up, this may be a logic error. It appears I am not specifying the resolution scope on the If this is the case then I would not expect it to fix the nature of the issue you describe, but it may fix this specific case. I'll see what I can come up with and get back to you at some point this afternoon. |
Adds a dependency on the latest version of ehcache at the time of writing which references an invalid version of JAXB internally which is unavailable on most modern JDKs.
If we only have a partial dependency resolution failure, log the error details and continue with the dependencies that we do have access to. This prevents us having immediate issues with erroneous transitive dependencies that we do not care about, letting Maven fail later if the resources were actually required. This change makes builds more resillient to poorly configured dependencies, such as the JAXB dependency used in ehcache.
I've pushed a potential fix to GH-307. @murdos please can you build that locally ( If it fixes the issue, I'll get this released ASAP to unblock you. The issue seems to be that Maven by default ignores partial dependency resolution failures, whereas we do not. I've relaxed the logic around this so that we drop dependencies that cannot be resolved after reporting the issues in error logs. Hopefully this should let you work around the issue. It is worth noting that without excluding the JAXB dependency, I am getting errors from Maven before getting errors from this plugin itself. I was only able to get this to work with the following: <dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>${ehcache.version}</version>
<classifier>jakarta</classifier>
<exclusions>
<exclusion>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</exclusion>
</exclusions>
</dependency> |
Adds a dependency on the latest version of ehcache at the time of writing which references an invalid version of JAXB internally which is unavailable on most modern JDKs.
If we only have a partial dependency resolution failure, log the error details and continue with the dependencies that we do have access to. This prevents us having immediate issues with erroneous transitive dependencies that we do not care about, letting Maven fail later if the resources were actually required. This change makes builds more resillient to poorly configured dependencies, such as the JAXB dependency used in ehcache.
Adds a dependency on the latest version of ehcache at the time of writing which references an invalid version of JAXB internally which is unavailable on most modern JDKs.
If we only have a partial dependency resolution failure, log the error details and continue with the dependencies that we do have access to. This prevents us having immediate issues with erroneous transitive dependencies that we do not care about, letting Maven fail later if the resources were actually required. This change makes builds more resillient to poorly configured dependencies, such as the JAXB dependency used in ehcache.
Thanks for the quick investigations @ascopes. Here's the full output with -e and -X options:
|
Sorry, I didn't understand that I should test from |
…-resolution-errors GH-299: Do not fail if we have partial dependency resolution failures
Cool, that is great to hear. I'll get that released now then. Thanks for the logs as well, can see Maven emitting the errors in those logs but continuing once it hits them, so hopefully we should be closer to that behaviour now. Should be on Maven Central in the next 30 minutes or so. Edit: scratch that last part, looks like Nexus is down again... I'll keep trying and see if I can get it to deploy but I'm just getting timeouts both via automation and via manual steps right now. |
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/skip directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/scalapb-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/skip directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-358-unpackaged-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-359-modular-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-with-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-without-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/scalapb-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/skip directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/test-dependency-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-358-unpackaged-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-359-modular-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-with-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-without-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-372-paths-with-spaces directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/kotlin-main directory: com.google.protobuf:protobuf-kotlin. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/kotlin-test directory: com.google.protobuf:protobuf-kotlin. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/scalapb-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/skip directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/test-dependency-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-kotlin` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-kotlin` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-kotlin dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-kotlin dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/embed-main-sources directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-132-duplicate-maven-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-135-compile-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-direct-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-164-transitive-dependency-resolution-depth-for-source-dependencies directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-excludes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-250-includes directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-test-jar-type directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-267-resolve-tests-classifier directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-277-plugin-ordering directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-299-ehcache-jaxb-resolution-failure directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-direct-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-302-runtime-scope-transitive-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-327-non-zip-archive-handling directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-358-unpackaged-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-359-modular-jar-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-with-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-363-packaged-jvm-plugin-without-mainclass-set directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/gh-372-paths-with-spaces directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/grpc-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-main-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-paths directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/java-test-lite directory: com.google.protobuf:protobuf-javalite. Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/path-protoc directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-binary-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/reactor-grpc-jvm-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/scalapb-plugin directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/skip directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Bumps the maven group with 1 update in the /protobuf-maven-plugin/src/it/test-dependency-resolution directory: [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf). Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-javalite` from 4.28.0 to 4.28.2 Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) Updates `com.google.protobuf:protobuf-java` from 4.28.0 to 4.28.2 - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-javalite dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:production dependency-group: maven ... Signed-off-by: dependabot[bot] <[email protected]>
While attempting to replace xolstice plugin by this one in the jhipster-lite code generator I encountered an issue while the plugin is resolving project dependencies:
I've uploaded a simple project that demonstrates the issue: https://github.com/murdos/protobuf-maven-plugin-deps-resolution-issue
It seems to be related to the resolution of dependencies of ehcache, and could be related to issues mentioned on StackOverflow
The text was updated successfully, but these errors were encountered: