This is an automated email from the ASF dual-hosted git repository. cwylie pushed a commit to branch 0.14.2-incubating in repository https://gitbox.apache.org/repos/asf/incubator-druid.git
commit cf9db11bd9b68d75fc5b52508f6bbd9d03d2eb3c Author: Alexander Saydakov <[email protected]> AuthorDate: Thu May 9 17:33:29 2019 -0700 fix issue #7607 (#7619) * fix issue #7607 * exclude com.google.code.findbugs:annotations --- extensions-core/datasketches/pom.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/extensions-core/datasketches/pom.xml b/extensions-core/datasketches/pom.xml index a3e2c2d..284024d 100644 --- a/extensions-core/datasketches/pom.xml +++ b/extensions-core/datasketches/pom.xml @@ -37,7 +37,13 @@ <dependency> <groupId>com.yahoo.datasketches</groupId> <artifactId>sketches-core</artifactId> - <version>0.13.1</version> + <version>0.13.3</version> + <exclusions> + <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>annotations</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
