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

Goal generate-test fails to resolve test-jar dependencies #267

Closed
bgK opened this issue Jun 28, 2024 · 8 comments · Fixed by #268
Closed

Goal generate-test fails to resolve test-jar dependencies #267

bgK opened this issue Jun 28, 2024 · 8 comments · Fixed by #268
Assignees
Labels
bug Something isn't working
Milestone

Comments

@bgK
Copy link

bgK commented Jun 28, 2024

Including protobuf-maven-plugin with the goal generate-test enabled in a project with a test-jar dependency causes the build to fail with the following exception:

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal io.github.ascopes:protobuf-maven-plugin:2.2.0:generate-test (default) on project module-2: 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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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:747)
    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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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:163)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:175)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:90)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:743)
    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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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: The following artifacts could not be resolved: org.example:module-1:test-jar:1.0-SNAPSHOT (absent): org.example:module-1:test-jar:1.0-SNAPSHOT was not found in https://repository/snapshots/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of repository-snapshots has elapsed or updates are forced
    at org.eclipse.aether.internal.impl.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:365)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:154)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:175)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:90)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:743)
    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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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: org.example:module-1:test-jar:1.0-SNAPSHOT (absent): org.example:module-1:test-jar:1.0-SNAPSHOT was not found in https://repository/snapshots/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of repository-snapshots has elapsed or updates are forced
    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.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:353)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:154)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:175)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:90)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:743)
    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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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.ArtifactNotFoundException: org.example:module-1:test-jar:1.0-SNAPSHOT was not found in https://repository/snapshots/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of repository-snapshots has elapsed or updates are forced
    at org.eclipse.aether.internal.impl.DefaultUpdateCheckManager.newException (DefaultUpdateCheckManager.java:225)
    at org.eclipse.aether.internal.impl.DefaultUpdateCheckManager.checkArtifact (DefaultUpdateCheckManager.java:201)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.gatherDownloads (DefaultArtifactResolver.java:586)
    at org.eclipse.aether.internal.impl.DefaultArtifactResolver.performDownloads (DefaultArtifactResolver.java:525)
    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.DefaultRepositorySystem.resolveDependencies (DefaultRepositorySystem.java:353)
    at io.github.ascopes.protobufmavenplugin.dependencies.aether.AetherMavenArtifactPathResolver.resolveDependencies (AetherMavenArtifactPathResolver.java:154)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.discoverImportPaths (SourceCodeGenerator.java:175)
    at io.github.ascopes.protobufmavenplugin.generation.SourceCodeGenerator.generate (SourceCodeGenerator.java:90)
    at io.github.ascopes.protobufmavenplugin.mojo.AbstractGenerateMojo.execute (AbstractGenerateMojo.java:743)
    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:904)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:281)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:204)
    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)

Reproducer project: ascopes-test-jar-reproducer.zip

@bgK
Copy link
Author

bgK commented Jun 28, 2024

Including the test-jar as:

        <dependency>
            <groupId>org.example</groupId>
            <artifactId>module-1</artifactId>
            <version>1.0-SNAPSHOT</version>
            <classifier>tests</classifier>
            <scope>test</scope>
        </dependency>

instead of:

        <dependency>
            <groupId>org.example</groupId>
            <artifactId>module-1</artifactId>
            <version>1.0-SNAPSHOT</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>

works.

The maven-jar-plugin documentation suggests using both type and classifier, which does not work:

        <dependency>
            <groupId>org.example</groupId>
            <artifactId>module-1</artifactId>
            <version>1.0-SNAPSHOT</version>
            <type>test-jar</type>
            <classifier>tests</classifier>
            <scope>test</scope>
        </dependency>

@ascopes ascopes self-assigned this Jun 28, 2024
@ascopes
Copy link
Owner

ascopes commented Jun 28, 2024

Hey.

Can you check if removing the protobuf plugin allows this to be resolved? The URL it is failing to resolve in that error message looks a little odd.

I haven't tested against resolving in SNAPSHOT repos so it could be related to that if you are not using the default repository URL for your Maven config.

@bgK
Copy link
Author

bgK commented Jun 28, 2024

Hi,

Can you check if removing the protobuf plugin allows this to be resolved? The URL it is failing to resolve in that error message looks a little odd.

Yes, all the mentioned type and classifier combinations build fine without protobuf-maven-plugin. This is an issue I encountered while migrating a project from xoltice's plugin to yours with no other changes.

I don't think it's related to SNAPSHOT repositories, IMO the resolver tries querying the repository because it fails to resolve the dependency from the currently building multi-module project.

@ascopes
Copy link
Owner

ascopes commented Jun 28, 2024

Got it, thanks. Will take a look now.

Wondering if I need to include the local artifact repository at https://github.com/ascopes/protobuf-maven-plugin/blob/main/protobuf-maven-plugin/src/main/java/io/github/ascopes/protobufmavenplugin/dependencies/aether/AetherMavenArtifactPathResolver.java#L85.

Will let you know once I have more. Thanks for including the reproduction as well, only just spotted that.

@ascopes
Copy link
Owner

ascopes commented Jun 28, 2024

I think I've spotted the issue. Logic error internally with mapping back and forth between Eclipse Aether types and MavenArtifact types, where it meant we were looking for an artifact with a file extension of test-jar rather than .jar and an implied type of test-jar.

This hadn't appeared in tests before as we've never actually tested against types that differ to their extensions. This totally got past me, sorry about that!


I've prepared a potential fix in GH-268, please can you try building the branch bugfix/GH-267-artifact-resolution-issues that I have pushed and verify everything works as expected for you? I have a reproduction similar to yours in the integration tests now but I'd like to make sure everything else works as expected for you.

You can git clone https://github.com/ascopes/protobuf-maven-plugin -b bugfix/GH-267-artifact-resolution-issues then just ./mvnw clean install -DskipTests -Dinvoker.skip and try building locally with the plugin version set to 2.2.1-SNAPSHOT.

If it is all okay, then I'll get a release out as soon as possible for you to address this. Thanks for the patience.

@bgK
Copy link
Author

bgK commented Jun 28, 2024

I've just verified GH-268 fixes the issue in the real project.
Thanks for the very quick turnaround, and the project as a whole, obviously!

@ascopes
Copy link
Owner

ascopes commented Jun 28, 2024

Great, glad to hear it works.

Will merge now and kick off a release. It should be on Maven Central in the next 30 mins or so (if GitHub actions stops playing up, if not I'll release it manually some time tomorrow).

ascopes added a commit that referenced this issue Jun 28, 2024
…n-issues

[bugfix] GH-267: Goal `generate-test` fails to resolve `test-jar` dependencies
@ascopes
Copy link
Owner

ascopes commented Jun 28, 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-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/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-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-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-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/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-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-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-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-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-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/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-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-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-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
2 participants