This is an automated email from the ASF dual-hosted git repository. technoboy pushed a commit to branch branch-2.11 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit a53aaa3e527de3631c2acccc4069c249fe8e3f0a Author: Jiwei Guo <[email protected]> AuthorDate: Mon Aug 29 22:03:59 2022 +0800 Exclude jsr305 from objectsize. (#17277) --- pulsar-sql/presto-distribution/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pulsar-sql/presto-distribution/pom.xml b/pulsar-sql/presto-distribution/pom.xml index bdf3f88360d..43b92ff9aac 100644 --- a/pulsar-sql/presto-distribution/pom.xml +++ b/pulsar-sql/presto-distribution/pom.xml @@ -136,6 +136,12 @@ <groupId>com.twitter.common</groupId> <artifactId>objectsize</artifactId> <version>${objectsize.version}</version> + <exclusions> + <exclusion> + <artifactId>jsr305</artifactId> + <groupId>com.google.code.findbugs</groupId> + </exclusion> + </exclusions> </dependency> <!-- jackson dependencies -->
