From 1561d135fa7e39907a2ad7a0653c578ad45e924c Mon Sep 17 00:00:00 2001
From: Daniil Penkin <dpenkin@atlassian.com>
Date: Sun, 8 Sep 2024 20:29:01 +1000
Subject: [PATCH] Remove redundant dependency

Remove explicit dependency on `com.google.protobuf:protobuf-java`
since it is a transitive dependency of `io.grpc:grpc-protobuf`
and is already pulled in anyway.
---
 build.gradle.kts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/build.gradle.kts b/build.gradle.kts
index b9f9e40..578b484 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -47,7 +47,6 @@ dependencies {
     implementation("io.grpc:grpc-netty-shaded:1.66.0")
     implementation("io.grpc:grpc-stub:1.66.0")
     implementation("io.grpc:grpc-protobuf:1.66.0")
-    implementation("com.google.protobuf:protobuf-java:3.24.4")
     implementation("org.apache.tomcat:annotations-api:6.0.53")
 }