File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed
kotlin-dataframe-plugin-gradle-example
kotlin-dataframe-plugin-maven-example Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import org.jlleitschuh.gradle.ktlint.KtlintExtension
33plugins {
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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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 >
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 >
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 >
109109 </dependency >
110110 </dependencies >
111111
112- </project >
112+ </project >
You can’t perform that action at this time.
0 commit comments