Hi,
I want to create Spark Application and need maven dependency to add into pom.xml file of the project.
Where can I find spark-core_2.11 maven dependency jar files?
What is the way to add spark-core_2.11 maven dependency in my project?
Thanks
Hi,
Spark version 2.3.0 is the latest version of Spark with many new features.
If you are developing new application should use Spark 2.3.0 in your project.
The easiest way to add Apache Spark into your project is to add following maven dependency:
<dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_2.11</artifactId> <version>2.3.0</version> </dependency>
Above code will download and include all necessary jar files in your project.
Thanks
Hi,
Spark version 2.3.0 is the latest version of Spark with many new features.
If you are developing new application should use Spark 2.3.0 in your project.
The easiest way to add Apache Spark into your project is to add following maven dependency:
<dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_2.11</artifactId> <version>2.3.0</version> </dependency>
Above code will download and include all necessary jar files in your project.
Thanks