Dependencies for Spark connector

Dependencies for Spark connector

If you want to create an application that uses the HERE platform Spark
Connector, you need to add the spark-support module as a dependency to your
project.

The spark connector offers a an SQL-like interface to work with Apache Spark
DataFrames. Therefore, you also need to add the spark-sql module as a
dependency to your project.

libraryDependencies ++= Seq(
  "com.here.platform.data.client" %% "spark-support" % "1.22.61",
  "org.apache.spark" %% "spark-sql" % "4.0.1"
)
<dependencies>
    <dependency>
        <groupId>com.here.platform.data.client</groupId>
        <artifactId>spark-support_2.13</artifactId>
        <version>1.22.61</version>
    </dependency>
    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-sql_2.13</artifactId>
        <version>4.0.1</version>
    </dependency>
</dependencies>