Created
March 25, 2020 06:23
-
-
Save pavangadagi/d88d2ec0a65550f1db655fe687c8238b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-streaming-kafka-0-10_2.11</artifactId> | |
<version>2.2.0</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.apache.spark/spark-streaming --> | |
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-streaming_2.11</artifactId> | |
<version>2.2.0</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients --> | |
<dependency> | |
<groupId>org.apache.kafka</groupId> | |
<artifactId>kafka-clients</artifactId> | |
<version>2.0.0</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.apache.kafka/connect-json --> | |
<dependency> | |
<groupId>org.apache.kafka</groupId> | |
<artifactId>connect-json</artifactId> | |
<version>1.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-core_2.11</artifactId> | |
<version>2.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.fasterxml.jackson.module</groupId> | |
<artifactId>jackson-module-scala_2.11</artifactId> | |
<version>2.9.1</version> | |
</dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment