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.
This commit is contained in:
Eric Anderson 2019-11-18 19:54:05 -08:00
parent 2d454d478c
commit 31a192dd40
1 changed files with 1 additions and 1 deletions

View File

@ -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"