Skip to content

Commit 7035d66

Browse files
authored
Minor updates to readme (#5)
Changed version of Spark in the installation example, Added one more link to the pom.xml and build.gradle examples.
1 parent 3e5227e commit 7035d66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ Currently, there are no kotlin-spark-api artifacts in maven central, but you can
2323

2424
There is support for `Maven`, `Gradle`, `SBT`, and `leinengen` on JitPack.
2525

26-
This project does not force you to use any specific version of Spark, but it has only been tested it with spark `3.0.0-preview2`.
27-
We believe it can work with Spark `2.4.5` but we cannot guarantee that.
26+
This project does not force you to use any specific version of Spark, but it has only been tested it with spark `3.0.0-preview2`. We believe it can work with Spark `2.4.5` but we cannot guarantee that.
2827

2928
So if you're using Maven you'll have to add the following into your `pom.xml`:
3029

@@ -43,11 +42,12 @@ So if you're using Maven you'll have to add the following into your `pom.xml`:
4342
<dependency>
4443
<groupId>org.apache.spark</groupId>
4544
<artifactId>spark-sql_2.12</artifactId>
46-
<version>2.4.5</version>
45+
<version>${spark.version}</version>
4746
</dependency>
4847
```
4948

50-
`core` is being compiled against Scala version `2.12` and it means you have to use `2.12` build of spark if you want to try out this project.
49+
Note that `core` is being compiled against Scala version `2.12` and it means you have to use `2.12` build of spark if you want to try out this project.
50+
You can find a complete example with `pom.xml` and `build.gradle` in the [Quick Start Guide](docs/quick-start-guide.md).
5151

5252
## Usage
5353

0 commit comments

Comments
 (0)