Skip to content

Commit d85b54c

Browse files
update readmes and Kotlin versions
1 parent a6b00a9 commit d85b54c

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Kotlin DataFrame Compiler Plugin Example
1+
# Kotlin DataFrame Compiler Gradle Plugin Example
22

3-
An IntelliJ IDEA project demonstrating the use of the
3+
An IntelliJ IDEA Gradle Kotlin project demonstrating the use of the
44
[Kotlin DataFrame Compiler Plugin](https://kotlin.github.io/dataframe/compiler-plugin.html).
55

6-
> **Note:** This project uses **dev versions** of the Kotlin and the Kotlin DataFrame plugin.
7-
> See [build.gradle.kts](build.gradle.kts) for details.
6+
We recommend using an up-to-date IntelliJ IDEA for the best experience,
7+
as well as the latest Kotlin plugin version.
88

9-
We recommend using an up-to-date IntelliJ IDEA for the best experience.
10-
For proper functionality in IntelliJ IDEA requires version 2025.2 or newer.
9+
> [!WARNING]
10+
> For proper functionality in IntelliJ IDEA requires version 2025.2 or newer.
1111
12-
[Download Kotlin DataFrame Compiler Plugin Example](https://github.com/Kotlin/dataframe/raw/example-projects-archives/kotlin-dataframe-plugin-example.zip)
12+
[Download Kotlin DataFrame Compiler Plugin Gradle Example](https://github.com/Kotlin/dataframe/raw/example-projects-archives/kotlin-dataframe-plugin-example.zip)

examples/kotlin-dataframe-plugin-gradle-example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.jlleitschuh.gradle.ktlint.KtlintExtension
33
plugins {
44
id("org.jlleitschuh.gradle.ktlint") version "12.3.0"
55

6-
val kotlinVersion = "2.3.0-RC2"
6+
val kotlinVersion = "2.3.0-RC3"
77
kotlin("jvm") version kotlinVersion
88
// Add the Kotlin DataFrame Compiler plugin of the same version as the Kotlin plugin.
99
kotlin("plugin.dataframe") version kotlinVersion
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Kotlin DataFrame Compiler Maven Plugin Example
2+
3+
An IntelliJ IDEA Maven Kotlin project demonstrating the use of the
4+
[Kotlin DataFrame Compiler Plugin](https://kotlin.github.io/dataframe/compiler-plugin.html).
5+
6+
We recommend using an up-to-date IntelliJ IDEA for the best experience,
7+
as well as the latest Kotlin plugin version.
8+
9+
> [!WARNING]
10+
> For proper functionality in IntelliJ IDEA requires version 2025.3 or newer.

examples/kotlin-dataframe-plugin-maven-example/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<plugin>
2929
<groupId>org.jetbrains.kotlin</groupId>
3030
<artifactId>kotlin-maven-plugin</artifactId>
31-
<version>2.3.0-RC</version>
31+
<version>2.3.0-RC3</version>
3232
<configuration>
3333
<compilerPlugins>
3434
<plugin>kotlin-dataframe</plugin>
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>org.jetbrains.kotlin</groupId>
4141
<artifactId>kotlin-maven-dataframe</artifactId>
42-
<version>2.3.0-RC</version>
42+
<version>2.3.0-RC3</version>
4343
</dependency>
4444
</dependencies>
4545
<executions>
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>org.jetbrains.kotlin</groupId>
8484
<artifactId>kotlin-test-junit5</artifactId>
85-
<version>2.3.0-RC</version>
85+
<version>2.3.0-RC3</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>
@@ -109,4 +109,4 @@
109109
</dependency>
110110
</dependencies>
111111

112-
</project>
112+
</project>

0 commit comments

Comments
 (0)