From 31a192dd401c170aa749ca69425b9fca81cf976c Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Mon, 18 Nov 2019 19:54:05 -0800 Subject: [PATCH] protobuf: Exclude new javalite artifact name In 48929c4 the protobuf lite artifact name changed from protobuf-lite to protobuf-javalite. However, the exclusion in grpc-protobuf was missed in the update, allowing protobuf lite to leak into the classpath. This restores the previous behavior of only having one protobuf implementation on the classpath. --- protobuf/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protobuf/build.gradle b/protobuf/build.gradle index 04221aa7eb..0c9c5e1b5c 100644 --- a/protobuf/build.gradle +++ b/protobuf/build.gradle @@ -30,7 +30,7 @@ dependencies { } compile (project(':grpc-protobuf-lite')) { - exclude group: 'com.google.protobuf', module: 'protobuf-lite' + exclude group: 'com.google.protobuf', module: 'protobuf-javalite' } signature "org.codehaus.mojo.signature:java17:1.0@signature"