Skip to content

Commit

Permalink
Update quick-start-guide.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolanrensen authored Jan 5, 2023
1 parent ae28e64 commit bbde39a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/quick-start-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Here's what the `pom.xml` looks like for this example:

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.version>1.4.0</kotlin.version>
<kotlin.version>1.8.0</kotlin.version>
<kotlin.code.style>official</kotlin.code.style>
</properties>

Expand All @@ -73,7 +73,7 @@ Here's what the `pom.xml` looks like for this example:
<dependency> <!-- Kotlin Spark API dependency -->
<groupId>org.jetbrains.kotlinx.spark</groupId>
<artifactId>kotlin-spark-api_3.3.1_2.13</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
<dependency> <!-- Spark dependency -->
<groupId>org.apache.spark</groupId>
Expand Down Expand Up @@ -161,9 +161,9 @@ repositories {
dependencies {
// Kotlin stdlib
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.0'
// Kotlin Spark API
implementation 'org.jetbrains.kotlinx.spark:kotlin-spark-api_3.3.1_2.13:1.2.2' // Apache Spark
implementation 'org.jetbrains.kotlinx.spark:kotlin-spark-api_3.3.1_2.13:1.2.3' // Apache Spark
compileOnly 'org.apache.spark:spark-sql_2.12:3.3.1'
}
Expand All @@ -186,7 +186,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id ("org.jetbrains.kotlin.jvm") version "1.4.0"
id ("org.jetbrains.kotlin.jvm") version "1.8.0"
id ("com.github.johnrengelman.shadow") version "5.2.0"
}
Expand All @@ -198,7 +198,7 @@ dependencies {
// Kotlin stdlib
implementation ("org.jetbrains.kotlin:kotlin-stdlib:1.4.0")
// Kotlin Spark API
implementation ("org.jetbrains.kotlinx.spark:kotlin-spark-api_3.3.1_2.13:1.2.2")
implementation ("org.jetbrains.kotlinx.spark:kotlin-spark-api_3.3.1_2.13:1.2.3")
// Apache Spark
compileOnly ("org.apache.spark:spark-sql_2.12:3.3.1")
}
Expand Down

0 comments on commit bbde39a

Please sign in to comment.