Skip to content

Commit 207e2ff

Browse files
authored
fix: Perform fixes in README.md (#113)
Correct artifact notation of the dependency in the pom.xml example (`kotlin-spark-api-3.0.0` → `kotlin-spark-api-3.0`) Correct artifact notation of the dependency in the search query of Maven Central banner in 'Releases' section (`kotlin-spark-api-3.0.0` → `kotlin-spark-api-3.0`) Correct version of artifact in Maven Central banner (`1.0.1` → `1.0.2`) Insignificant fixup in link to the issue 'SPARK-32530'
1 parent 5c4f344 commit 207e2ff

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
@@ -1,12 +1,12 @@
1-
# Kotlin for Apache® Spark™ [![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx.spark/kotlin-spark-api-parent.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:org.jetbrains.kotlinx.spark%20AND%20v:1.0.1) [![official JetBrains project](http://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
1+
# Kotlin for Apache® Spark™ [![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx.spark/kotlin-spark-api-parent.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:org.jetbrains.kotlinx.spark%20AND%20v:1.0.2) [![official JetBrains project](http://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
22

33

44
Your next API to work with [Apache Spark](https://spark.apache.org/).
55

66
This project adds a missing layer of compatibility between [Kotlin](https://kotlinlang.org/) and [Apache Spark](https://spark.apache.org/).
77
It allows Kotlin developers to use familiar language features such as data classes, and lambda expressions as simple expressions in curly braces or method references.
88

9-
We have opened a Spark Project Improvement Proposal: [Kotlin support for Apache Spark](http://issues.apache.org/jira/browse/SPARK-32530#) to work with the community towards getting Kotlin support as a first-class citizen in Apache Spark. We encourage you to voice your opinions and participate in the discussion.
9+
We have opened a Spark Project Improvement Proposal: [Kotlin support for Apache Spark](http://issues.apache.org/jira/browse/SPARK-32530) to work with the community towards getting Kotlin support as a first-class citizen in Apache Spark. We encourage you to voice your opinions and participate in the discussion.
1010

1111
## Table of Contents
1212

@@ -41,7 +41,7 @@ The list of Kotlin for Apache Spark releases is available [here](https://github.
4141
The Kotlin for Spark artifacts adhere to the following convention:
4242
`[Apache Spark version]_[Scala core version]:[Kotlin for Apache Spark API version]`
4343

44-
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx.spark/kotlin-spark-api-parent.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.jetbrains.kotlinx.spark%22%20AND%20a:%22kotlin-spark-api-3.0.0_2.12%22)
44+
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx.spark/kotlin-spark-api-parent.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:"org.jetbrains.kotlinx.spark"%20AND%20a:"kotlin-spark-api-3.0")
4545

4646
## How to configure Kotlin for Apache Spark in your project
4747

@@ -52,7 +52,7 @@ Here's an example `pom.xml`:
5252
```xml
5353
<dependency>
5454
<groupId>org.jetbrains.kotlinx.spark</groupId>
55-
<artifactId>kotlin-spark-api-3.0.0</artifactId>
55+
<artifactId>kotlin-spark-api-3.0</artifactId>
5656
<version>${kotlin-spark-api.version}</version>
5757
</dependency>
5858
<dependency>

0 commit comments

Comments
 (0)