Exclude protobuf-java from pulsar-client-all (#896)

This commit excludes the `protobuf-java` unshaded transitive dependency
from the `pulsar-client-all` library. This allows the version of the
optional `protobuf-java` dependency to be controlled by `spring-pulsar`.

Resolves #876
This commit is contained in:
Chris Bono
2024-10-18 19:42:09 -05:00
committed by GitHub
parent 9baa562fb9
commit 0274632410

View File

@@ -11,6 +11,7 @@ dependencies {
exclude group: 'org.apache.logging.log4j'
exclude group: 'com.sun.activation', module: 'javax.activation'
exclude group: 'javax.validation', module: 'validation-api'
exclude group: 'com.google.protobuf', module: 'protobuf-java'
}
api 'org.springframework:spring-context'
api 'org.springframework:spring-messaging'