You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add dependencies in the `build.gradle.kts` script:
123
123
124
124
```kotlin
125
125
dependencies {
@@ -135,18 +135,53 @@ repositories {
135
135
}
136
136
```
137
137
138
+
Refer to
139
+
[Get started with KotlinDataFrame on Gradle](https://kotlin.github.io/dataframe/setupgradle.html)
140
+
for detailed setup instructions (including GroovyDSL).
141
+
142
+
*You can also check the [CustomGradleConfiguration](https://kotlin.github.io/dataframe/setupcustomgradle.html) if you don't need certain formats as dependencies.
143
+
*ForAndroid projects, see [SetupKotlinDataFrame on Android](https://kotlin.github.io/dataframe/setupandroid.html).
144
+
*See [IDEAGradle example projects](examples/idea-examples)
145
+
and [the Gradle project with the KotlinDataFrameCompiler plugin](examples/kotlin-dataframe-plugin-gradle-example).
146
+
138
147
Refer to the
139
-
[Get started with KotlinDataFrameon Gradle](https://kotlin.github.io/dataframe/gettingstartedgradle.html)
Due to the [known issue](https://youtrack.jetbrains.com/issue/KT-66735), incremental compilation must be disabled for now.
59
+
Add the following line to your `gradle.properties` file:
60
+
59
61
```properties
60
62
kotlin.incremental=false
61
63
```
62
64
63
65
Sync the project.
64
66
65
-
Disabling incremental compilation will no longer be necessary
66
-
when https://youtrack.jetbrains.com/issue/KT-66735 is resolved.
67
-
68
67
</tab>
69
68
70
69
<tabtitle="Maven">
@@ -164,6 +163,8 @@ fun main() {
164
163
165
164
## Examples
166
165
167
-
*[Kotlin DataFrame in the IntelliJ IDEA project example](https://github.com/Kotlin/dataframe/blob/master/examples/kotlin-dataframe-plugin-example)
168
-
— an IntelliJ IDEA project showcasing simple DataFrame expressions using the Compiler Plugin.
166
+
*[Kotlin DataFrame in the IntelliJ IDEA Gradle project example](https://github.com/Kotlin/dataframe/blob/master/examples/kotlin-dataframe-plugin-gradle-example)
167
+
— an IntelliJ IDEA Gradle project showcasing simple DataFrame expressions using the Compiler Plugin.
168
+
*[Kotlin DataFrame in the IntelliJ IDEA Maven project example](https://github.com/Kotlin/dataframe/blob/master/examples/kotlin-dataframe-plugin-maven-example)
169
+
— an IntelliJ IDEA Maven project showcasing simple DataFrame expressions using the Compiler Plugin.
169
170
*[](compilerPluginExamples.md) — few examples of Compiler Plugin usages.
Copy file name to clipboardExpand all lines: docs/StardustDocs/topics/setup/SetupGradle.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -121,13 +121,21 @@ plugins {
121
121
</tab>
122
122
</tabs>
123
123
124
-
Due to [this issue](https://youtrack.jetbrains.com/issue/KT-66735), incremental compilation must be disabled for now.
124
+
Due to the [known issue](https://youtrack.jetbrains.com/issue/KT-66735), incremental compilation must be disabled for now.
125
125
Add the following line to your `gradle.properties` file:
126
126
127
127
```properties
128
128
kotlin.incremental=false
129
129
```
130
130
131
+
## Project Example
132
+
133
+
See [the Gradle example project with the Kotlin DataFrame Compiler Plugin enabled on GitHub](https://github.com/Kotlin/dataframe/tree/master/examples/kotlin-dataframe-plugin-gradle-example).
134
+
135
+
You can also
136
+
[download this project](https://github.com/Kotlin/dataframe/raw/example-projects-archives/kotlin-dataframe-plugin-gradle-example.zip).
137
+
138
+
131
139
## Next Steps
132
140
133
141
* Once you’ve set up Kotlin DataFrame in your Gradle project, continue with the [](quickstart.md)
0 commit comments