Advertisement
hivefans

pom.xml

Mar 30th, 2017
510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.74 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <modelVersion>4.0.0</modelVersion>
  6.     <groupId>groupId</groupId>
  7.    <artifactId>Spark-Streaming-DirectKafka-Examples</artifactId>
  8.    <version>1.0-SNAPSHOT</version>
  9.     <dependencies>
  10.        <dependency>
  11.            <groupId>com.101tec</groupId>
  12.            <artifactId>zkclient</artifactId>
  13.            <version>0.3</version>
  14.        </dependency>
  15.        <dependency>
  16.            <groupId>org.apache.kafka</groupId>
  17.            <artifactId>kafka_2.10</artifactId>
  18.            <version>0.8.2.1</version>
  19.        </dependency>
  20.        <dependency>
  21.            <groupId>org.apache.spark</groupId>
  22.            <artifactId>spark-core_2.10</artifactId>
  23.            <version>1.5.1</version>
  24.        </dependency>
  25.        <dependency>
  26.            <groupId>org.apache.spark</groupId>
  27.            <artifactId>spark-streaming_2.10</artifactId>
  28.            <version>1.5.1</version>
  29.        </dependency>
  30.        <dependency>
  31.            <groupId>org.apache.spark</groupId>
  32.            <artifactId>spark-streaming-kafka_2.10</artifactId>
  33.            <version>1.5.1</version>
  34.        </dependency>
  35.        <dependency>
  36.            <groupId>com.google.guava</groupId>
  37.            <artifactId>guava</artifactId>
  38.            <version>18.0</version>
  39.        </dependency>
  40.        <dependency>
  41.            <groupId>com.typesafe</groupId>
  42.            <artifactId>config</artifactId>
  43.            <version>1.3.0</version>
  44.        </dependency>
  45.     </dependencies>
  46.    
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement