I am looking for maven dependency details for Spark 1.6.
Here are the maven dependencies.
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.10.6</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.11</artifactId>
<version>1.6.0</version>
</dependency>
</dependencies>
I have selected the following under project->properties->scala compiler in eclipse Luna IDE.
However, I see errors like the following spark-core_2.11-1.6.0.jar of hworkspace build path is cross-compiled with an incompatible version of Scala (2.11.0). In case this report is mistaken, this check can be disabled in the compiler preference page.
I have followed all steps given here -> spark build path is cross-compiled with an incompatible version of Scala (2.10.0)
Please let me know what I am doing wrong here. Thanks!