Remove 'provided' from storm-kafka pom.xml example Per this documentation, the kafka dependency of storm-kafka is in the 'provided' scope so that users can choose which Scala distribution they include.
Thus, this example of how to fulfill the dependency should not itself use the 'provided' scope, or else kafka will still not be included. Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/f7732e6a Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/f7732e6a Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/f7732e6a Branch: refs/heads/security Commit: f7732e6ab12cfae58b6df2681ab6bdf54de83b29 Parents: cfe7e63 Author: Patrick Lucas <[email protected]> Authored: Thu Oct 9 17:30:24 2014 -0700 Committer: Patrick Lucas <[email protected]> Committed: Thu Oct 9 17:30:25 2014 -0700 ---------------------------------------------------------------------- external/storm-kafka/README.md | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/f7732e6a/external/storm-kafka/README.md ---------------------------------------------------------------------- diff --git a/external/storm-kafka/README.md b/external/storm-kafka/README.md index 73cf334..47b27a5 100644 --- a/external/storm-kafka/README.md +++ b/external/storm-kafka/README.md @@ -121,7 +121,6 @@ use Kafka 0.8.1.1 built against Scala 2.10, you would use the following dependen <groupId>org.apache.kafka</groupId> <artifactId>kafka_2.10</artifactId> <version>0.8.1.1</version> - <scope>provided</scope> <exclusions> <exclusion> <groupId>org.apache.zookeeper</groupId>
