Skip to content
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

Closed
murdos opened this issue Jul 20, 2024 · 7 comments · Fixed by #307
Closed

Error while resolving import dependencies #299

murdos opened this issue Jul 20, 2024 · 7 comments · Fixed by #307
Assignees
Labels
bug Something isn't working
Milestone

Comments

@murdos
Copy link

murdos commented Jul 20, 2024

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:

[INFO] --- protobuf:2.3.0:generate (default) @ jhipster-sample-application ---
[INFO] Resolving artifact com.google.protobuf:protoc:exe:linux-x86_64:4.27.2
[INFO] Generating source code for 0 protobuf file(s) from 0 file tree(s)
[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10-b140310.1920 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10-b140310.1920
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10-b140802.1033 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10-b140802.1033
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.11
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.698 s
[INFO] Finished at: 2024-07-20T22:39:35+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.3.0:generate (default) on project jhipster-sample-application: Failed to resolve dependencies: Failed to collect dependencies at org.ehcache:ehcache:jar:jakarta:3.10.8 -> org.glassfish.jaxb:jaxb-runtime:jar:2.3.0-b170127.1453 -> org.glassfish.jaxb:jaxb-core:jar:2.3.0-b170127.1453 -> javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438: Failed to read artifact descriptor for javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438: The following artifacts could not be resolved: javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 (absent): Could not transfer artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [releases.java.net (http://maven.java.net/content/repositories/releases/, default, releases+snapshots), shapshots.java.net (http://maven.java.net/content/repositories/snapshots/, default, releases+snapshots), jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/, default, releases+snapshots), netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans, default, releases)] -> [Help 1]

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

@ascopes
Copy link
Owner

ascopes commented Jul 21, 2024

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 mvn -B -e clean generate-sources for the project? That should provide a stacktrace for where this error is occurring in the plugin.

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 *.proto sources. This is done so they can be added to import paths like how you'd see Java make them available by being dependencies. You can use the two features above and importDependencies to control this behaviour.

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.

@ascopes ascopes added bug Something isn't working help wanted labels Jul 21, 2024
@ascopes ascopes self-assigned this Jul 21, 2024
@ascopes
Copy link
Owner

ascopes commented Jul 21, 2024

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 CollectRequest where I perform resolution.

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.

ascopes added a commit that referenced this issue Jul 21, 2024
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.
ascopes added a commit that referenced this issue Jul 21, 2024
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.
@ascopes
Copy link
Owner

ascopes commented Jul 21, 2024

I've pushed a potential fix to GH-307. @murdos please can you build that locally (./mvnw clean install -Dmaven.test.skip -Dinvoker.skip) and try building your project against this 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>

ascopes added a commit that referenced this issue Jul 21, 2024
@ascopes ascopes added this to the v2.4.x milestone Jul 21, 2024
ascopes added a commit that referenced this issue Jul 21, 2024
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.
ascopes added a commit that referenced this issue Jul 21, 2024
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.
ascopes added a commit that referenced this issue Jul 21, 2024
ascopes added a commit that referenced this issue Jul 21, 2024
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.
ascopes added a commit that referenced this issue Jul 21, 2024
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.
@murdos
Copy link
Author

murdos commented Jul 21, 2024

Thanks for the quick investigations @ascopes.
I tried 2.4.0-SNAPSHOT version built from main branch (at 8a96b72), and it still failed. It should be noted that if I remove the protobuf-maven-plugin, maven has no problem for doing its own dependencies resolution, and the build is successful.

Here's the full output with -e and -X options:
[DEBUG] Invoking command in subprocess uname -o
[INFO] Resolving artifact com.google.protobuf:protoc:exe:linux-x86_64:4.27.2
[DEBUG] Ensuring /home/amino/.m2/repository/com/google/protobuf/protoc/4.27.2/protoc-4.27.2-linux-x86_64.exe is executable
[DEBUG] Discovering all compilable protobuf source files
[DEBUG] Attempting to resolve the following dependencies in this pass: []
[DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=6953, ConflictMarker.markTime=17814, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=2184, ConflictIdSorter.topsortTime=7645, ConflictIdSorter.conflictIdCount=0, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=25739, ConflictResolver.conflictItemCount=0, DfDependencyCollector.collectTime=5551, DfDependencyCollector.transformTime=75121}
[INFO] Generating source code for 0 protobuf file(s) from 0 file tree(s)
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Resolved extension jar to Aether artifact type (classifier: , type: jar, id: jar, {language=java, constitutesBuildPath=true, type=jar, includesDependencies=false})
[DEBUG] Attempting to resolve the following dependencies in this pass: [com.approvaltests:approvaltests:jar:24.3.0 (test), net.jqwik:jqwik:jar:1.9.0 (test), com.google.protobuf:protobuf-java:jar:4.27.2 (compile), org.springframework.boot:spring-boot-starter:jar:3.3.1 (compile), org.springframework.boot:spring-boot-configuration-processor:jar:3.3.1 (compile?), org.apache.commons:commons-lang3:jar:3.14.0 (compile), org.springframework.boot:spring-boot-starter-validation:jar:3.3.1 (compile), org.springframework.boot:spring-boot-starter-web:jar:3.3.1 (compile), org.springframework.boot:spring-boot-starter-actuator:jar:3.3.1 (compile), org.springframework.boot:spring-boot-starter-data-jpa:jar:3.3.1 (compile), com.zaxxer:HikariCP:jar:5.1.0 (compile), org.hibernate.orm:hibernate-core:jar:6.5.2.Final (compile), com.mysql:mysql-connector-j:jar:8.3.0 (runtime), org.liquibase:liquibase-core:jar:4.28.0 (compile), org.springframework.boot:spring-boot-starter-security:jar:3.3.1 (compile), io.jsonwebtoken:jjwt-api:jar:0.12.6 (compile), io.jsonwebtoken:jjwt-impl:jar:0.12.6 (runtime), io.jsonwebtoken:jjwt-jackson:jar:0.12.6 (runtime), org.springdoc:springdoc-openapi-starter-webmvc-ui:jar:2.6.0 (compile), org.springdoc:springdoc-openapi-starter-webmvc-api:jar:2.6.0 (compile), javax.cache:cache-api:jar:1.1.1 (compile), org.ehcache:ehcache:jar:jakarta:3.10.8 (compile), com.google.protobuf:protobuf-java-util:jar:4.27.2 (test), org.springframework.boot:spring-boot-starter-test:jar:3.3.1 (test), org.reflections:reflections:jar:0.10.2 (test), org.testcontainers:mysql:jar:1.19.8 (test), org.springframework.security:spring-security-test:jar:6.3.1 (test), io.cucumber:cucumber-junit-platform-engine:jar:7.18.0 (test), io.cucumber:cucumber-java:jar:7.18.0 (test), io.cucumber:cucumber-spring:jar:7.18.0 (test), org.junit.platform:junit-platform-suite:jar:1.10.2 (test)]
[DEBUG] Could not find metadata org.glassfish.jaxb:jaxb-runtime/maven-metadata.xml in local (/home/amino/.m2/repository)
[DEBUG] Skipped remote request for org.glassfish.jaxb:jaxb-runtime/maven-metadata.xml, locally cached metadata up-to-date
[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10-b140310.1920 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10-b140310.1920
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10-b140802.1033 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10-b140802.1033
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.10 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.10
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[WARNING] The POM for org.glassfish.jaxb:jaxb-runtime:jar:2.2.11 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.glassfish.jaxb:jaxb-runtime:2.2.11
[ERROR] 'dependencyManagement.dependencies.dependency.systemPath' for com.sun:tools:jar must specify an absolute path but is ${tools.jar} @ 

[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for releases.java.net (http://maven.java.net/content/repositories/releases/).
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for shapshots.java.net (http://maven.java.net/content/repositories/snapshots/).
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/).
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans).
[DEBUG] Resolving artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Resolving artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Writing tracking file '/home/amino/.m2/repository/javax/xml/bind/jaxb-api/2.3.0-b161121.1438/jaxb-api-2.3.0-b161121.1438.pom.lastUpdated'
[DEBUG] Resolving artifact com.sun.istack:istack-commons-runtime:pom:3.0.6 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Resolving artifact com.sun.istack:istack-commons-runtime:pom:3.0.6 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Writing tracking file '/home/amino/.m2/repository/com/sun/istack/istack-commons-runtime/3.0.6/istack-commons-runtime-3.0.6.pom.lastUpdated'
[DEBUG] Resolving artifact com.sun.xml.fastinfoset:FastInfoset:pom:1.2.14 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Resolving artifact com.sun.xml.fastinfoset:FastInfoset:pom:1.2.14 from [central (https://repo.maven.apache.org/maven2, default, releases), maven-default-http-blocker (http://0.0.0.0/, default, releases+snapshots, blocked), jvnet-nexus-releases (https://maven.java.net/content/repositories/releases/, default, releases)]
[DEBUG] Writing tracking file '/home/amino/.m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.14/FastInfoset-1.2.14.pom.lastUpdated'
[DEBUG] Using mirror maven-default-http-blocker (http://0.0.0.0/) for ow2-snapshot (http://repository.ow2.org/nexus/content/repositories/snapshots).
[DEBUG] Could not find metadata io.cucumber:messages/maven-metadata.xml in local (/home/amino/.m2/repository)
[DEBUG] Skipped remote request for io.cucumber:messages/maven-metadata.xml, locally cached metadata up-to-date
[DEBUG] Could not find metadata io.cucumber:messages/maven-metadata.xml in local (/home/amino/.m2/repository)
[DEBUG] Skipped remote request for io.cucumber:messages/maven-metadata.xml, locally cached metadata up-to-date
[DEBUG] Could not find metadata io.cucumber:query/maven-metadata.xml in local (/home/amino/.m2/repository)
[DEBUG] Skipped remote request for io.cucumber:query/maven-metadata.xml, locally cached metadata up-to-date
[DEBUG] Could not find metadata io.cucumber:messages/maven-metadata.xml in local (/home/amino/.m2/repository)
[DEBUG] Skipped remote request for io.cucumber:messages/maven-metadata.xml, locally cached metadata up-to-date
[DEBUG] Dependency collection stats {ConflictMarker.analyzeTime=1084157, ConflictMarker.markTime=515012, ConflictMarker.nodeCount=1921, ConflictIdSorter.graphTime=293825, ConflictIdSorter.topsortTime=71074, ConflictIdSorter.conflictIdCount=185, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2423415, ConflictResolver.conflictItemCount=438, DfDependencyCollector.collectTime=176929419, DfDependencyCollector.transformTime=4410877}
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  2.495 s
[INFO] Finished at: 2024-07-21T19:10:24+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.4.0-SNAPSHOT:generate (default) on project mysqlapp: Failed to resolve dependencies: Failed to collect dependencies at org.ehcache:ehcache:jar:jakarta:3.10.8 -> org.glassfish.jaxb:jaxb-runtime:jar:2.3.0-b170127.1453 -> org.glassfish.jaxb:jaxb-core:jar:2.3.0-b170127.1453 -> javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438: Failed to read artifact descriptor for javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438: The following artifacts could not be resolved: javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 (absent): Could not transfer artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [releases.java.net (http://maven.java.net/content/repositories/releases/, default, releases+snapshots), shapshots.java.net (http://maven.java.net/content/repositories/snapshots/, default, releases+snapshots), jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/, default, releases+snapshots), netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans, default, releases)] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.4.0-SNAPSHOT:generate (default) on project mysqlapp: Failed to resolve dependencies
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:333)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.apache.maven.plugin.MojoFailureException: Failed to resolve dependencies
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:790)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: io.github.ascopes.protobufmavenplugin.dependencies.ResolutionException: Failed to resolve dependencies
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:171)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.resolution.DependencyResolutionException: Failed to collect dependencies at org.ehcache:ehcache:jar:jakarta:3.10.8 -> org.glassfish.jaxb:jaxb-runtime:jar:2.3.0-b170127.1453 -> org.glassfish.jaxb:jaxb-core:jar:2.3.0-b170127.1453 -> javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:363)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.collection.DependencyCollectionException: Failed to collect dependencies at org.ehcache:ehcache:jar:jakarta:3.10.8 -> org.glassfish.jaxb:jaxb-runtime:jar:2.3.0-b170127.1453 -> org.glassfish.jaxb:jaxb-core:jar:2.3.0-b170127.1453 -> javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438
    at org.eclipse.aether.internal.impl.collect.DependencyCollectorDelegate.collectDependencies (DependencyCollectorDelegate.java:260)
    at org.eclipse.aether.internal.impl.collect.DefaultDependencyCollector.collectDependencies (DefaultDependencyCollector.java:87)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:328)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.resolution.ArtifactDescriptorException: Failed to read artifact descriptor for javax.xml.bind:jaxb-api:jar:2.3.0-b161121.1438
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom (DefaultArtifactDescriptorReader.java:252)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor (DefaultArtifactDescriptorReader.java:182)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.resolveCachedArtifactDescriptor (DfDependencyCollector.java:382)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.getArtifactDescriptorResult (DfDependencyCollector.java:368)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:218)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doCollectDependencies (DfDependencyCollector.java:108)
    at org.eclipse.aether.internal.impl.collect.DependencyCollectorDelegate.collectDependencies (DependencyCollectorDelegate.java:222)
    at org.eclipse.aether.internal.impl.collect.DefaultDependencyCollector.collectDependencies (DefaultDependencyCollector.java:87)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:328)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.resolution.ArtifactResolutionException: The following artifacts could not be resolved: javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 (absent): Could not transfer artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [releases.java.net (http://maven.java.net/content/repositories/releases/, default, releases+snapshots), shapshots.java.net (http://maven.java.net/content/repositories/snapshots/, default, releases+snapshots), jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/, default, releases+snapshots), netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans, default, releases)]
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:473)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:261)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:243)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom (DefaultArtifactDescriptorReader.java:241)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor (DefaultArtifactDescriptorReader.java:182)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.resolveCachedArtifactDescriptor (DfDependencyCollector.java:382)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.getArtifactDescriptorResult (DfDependencyCollector.java:368)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:218)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doCollectDependencies (DfDependencyCollector.java:108)
    at org.eclipse.aether.internal.impl.collect.DependencyCollectorDelegate.collectDependencies (DependencyCollectorDelegate.java:222)
    at org.eclipse.aether.internal.impl.collect.DefaultDependencyCollector.collectDependencies (DefaultDependencyCollector.java:87)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:328)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.transfer.ArtifactTransferException: Could not transfer artifact javax.xml.bind:jaxb-api:pom:2.3.0-b161121.1438 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [releases.java.net (http://maven.java.net/content/repositories/releases/, default, releases+snapshots), shapshots.java.net (http://maven.java.net/content/repositories/snapshots/, default, releases+snapshots), jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/, default, releases+snapshots), netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans, default, releases)]
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads (DefaultArtifactResolver.java:541)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:449)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:261)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:243)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom (DefaultArtifactDescriptorReader.java:241)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor (DefaultArtifactDescriptorReader.java:182)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.resolveCachedArtifactDescriptor (DfDependencyCollector.java:382)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.getArtifactDescriptorResult (DfDependencyCollector.java:368)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:218)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doCollectDependencies (DfDependencyCollector.java:108)
    at org.eclipse.aether.internal.impl.collect.DependencyCollectorDelegate.collectDependencies (DependencyCollectorDelegate.java:222)
    at org.eclipse.aether.internal.impl.collect.DefaultDependencyCollector.collectDependencies (DefaultDependencyCollector.java:87)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:328)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
Caused by: org.eclipse.aether.transfer.NoRepositoryConnectorException: Blocked mirror for repositories: [releases.java.net (http://maven.java.net/content/repositories/releases/, default, releases+snapshots), shapshots.java.net (http://maven.java.net/content/repositories/snapshots/, default, releases+snapshots), jvnet-nexus-staging (http://maven.java.net/content/repositories/staging/, default, releases+snapshots), netbeans (http://bits.netbeans.org/nexus/content/groups/netbeans, default, releases)]
    at org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider.newRepositoryConnector (DefaultRepositoryConnectorProvider.java:108)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads (DefaultArtifactResolver.java:536)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolve (DefaultArtifactResolver.java:449)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifacts (DefaultArtifactResolver.java:261)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.resolveArtifact (DefaultArtifactResolver.java:243)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom (DefaultArtifactDescriptorReader.java:241)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor (DefaultArtifactDescriptorReader.java:182)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.resolveCachedArtifactDescriptor (DfDependencyCollector.java:382)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.getArtifactDescriptorResult (DfDependencyCollector.java:368)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:218)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doRecurse (DfDependencyCollector.java:343)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:277)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.processDependency (DfDependencyCollector.java:156)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.process (DfDependencyCollector.java:138)
    at org.eclipse.aether.internal.impl.collect.df.DfDependencyCollector.doCollectDependencies (DfDependencyCollector.java:108)
    at org.eclipse.aether.internal.impl.collect.DependencyCollectorDelegate.collectDependencies (DependencyCollectorDelegate.java:222)
    at org.eclipse.aether.internal.impl.collect.DefaultDependencyCollector.collectDependencies (DefaultDependencyCollector.java:87)
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:328)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:184)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:91)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:786)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:328)
    at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:316)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:212)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:174)
    at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:75)
    at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:162)
    at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:159)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:73)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:53)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:118)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:261)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:173)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:101)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:903)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:280)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:203)
    at jdk.internal.reflect.DirectMethodHandleAccessor.invoke (DirectMethodHandleAccessor.java:103)
    at java.lang.reflect.Method.invoke (Method.java:580)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:255)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:201)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:361)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:314)
[ERROR] 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[DEBUG] Shutting down executor...
[DEBUG] Awaiting executor termination...
[DEBUG] Shutdown ended, stubborn remaining tasks that will be orphaned: []
[DEBUG] Shutting down adapter factory; available factories [file-lock, rwlock-local, semaphore-local, noop]; available name mappers [discriminating, file-gav, file-hgav, file-static, gav, static]
[DEBUG] Shutting down 'file-lock' factory
[DEBUG] Shutting down 'rwlock-local' factory
[DEBUG] Shutting down 'semaphore-local' factory
[DEBUG] Shutting down 'noop' factory

@murdos
Copy link
Author

murdos commented Jul 21, 2024

Sorry, I didn't understand that I should test from bugfix/GH-299-partial-dependency-resolution-errors branch.
From here build doesn't fail anymore!

ascopes added a commit that referenced this issue Jul 21, 2024
…-resolution-errors

GH-299: Do not fail if we have partial dependency resolution failures
@ascopes
Copy link
Owner

ascopes commented Jul 21, 2024

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.

@ascopes
Copy link
Owner

ascopes commented Jul 21, 2024

dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
dependabot bot added a commit that referenced this issue Sep 19, 2024
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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants