mirror of https://github.com/grpc/grpc-java.git
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:
parent
2d454d478c
commit
31a192dd40
|
|
@ -30,7 +30,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
compile (project(':grpc-protobuf-lite')) {
|
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"
|
signature "org.codehaus.mojo.signature:java17:1.0@signature"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue