This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch 1174 in repository https://gitbox.apache.org/repos/asf/incubator-stormcrawler.git
commit 527e87ffb374aa508a163398be9e3c48020b2397 Author: Richard Zowalla <[email protected]> AuthorDate: Thu Mar 28 17:08:59 2024 +0100 Fix #1174 - Exclude optional artifact from storm-hdfs, which won't have that dependency in upcoming storm 2.6.2 anymore. Signed-off-by: Richard Zowalla <[email protected]> --- THIRD-PARTY.txt | 1 - external/warc/pom.xml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/THIRD-PARTY.txt b/THIRD-PARTY.txt index 8f2ea7b5..98cd4b9c 100644 --- a/THIRD-PARTY.txt +++ b/THIRD-PARTY.txt @@ -348,7 +348,6 @@ List of third-party dependencies grouped by their license type. * SparseBitSet (com.zaxxer:SparseBitSet:1.2 - https://github.com/brettwooldridge/SparseBitSet) * storm-autocreds (org.apache.storm:storm-autocreds:2.6.1 - https://storm.apache.org/external/storm-autocreds) * Storm Client (org.apache.storm:storm-client:2.6.1 - https://storm.apache.org/storm-client) - * storm-crawler-core (com.digitalpebble.stormcrawler:storm-crawler-core:2.12-SNAPSHOT - https://github.com/DigitalPebble/storm-crawler/tree/master/core) * storm-hdfs (org.apache.storm:storm-hdfs:2.6.1 - https://storm.apache.org/external/storm-hdfs) * swagger-annotations-jakarta (io.swagger.core.v3:swagger-annotations-jakarta:2.2.17 - https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta) * TagSoup (org.ccil.cowan.tagsoup:tagsoup:1.2.1 - http://home.ccil.org/~cowan/XML/tagsoup/) diff --git a/external/warc/pom.xml b/external/warc/pom.xml index 432d0d83..a321eada 100644 --- a/external/warc/pom.xml +++ b/external/warc/pom.xml @@ -53,6 +53,11 @@ <groupId>org.apache.hive.hcatalog</groupId> <artifactId>hive-hcatalog-streaming</artifactId> </exclusion> + <!-- this is only needed if explicitly configured and will be dropped in 2.6.2 --> + <exclusion> + <groupId>io.confluent</groupId> + <artifactId>kafka-avro-serializer</artifactId> + </exclusion> </exclusions> </dependency>
