Skip to content

Commit a267cbd

Browse files
committed
Simplify compiler plugin setup
1 parent e0a25a5 commit a267cbd

File tree

1 file changed

+2
-27
lines changed

1 file changed

+2
-27
lines changed

docs/StardustDocs/topics/Compiler-Plugin.md

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,43 +14,18 @@ Next release: 2025.2
1414
Setup plugins in `build.gradle.kts`:
1515

1616
```kotlin
17-
kotlin("jvm") version "2.2.20-dev-3524"
17+
kotlin("jvm") version "2.2.20-Beta1"
1818
```
1919

2020
```kotlin
21-
kotlin("plugin.dataframe") version "2.2.20-dev-3524"
21+
kotlin("plugin.dataframe") version "2.2.20-Beta1"
2222
```
2323

2424
Setup library dependency:
2525
```kotlin
2626
implementation("org.jetbrains.kotlinx:dataframe:1.0.0-Beta2")
2727
```
2828

29-
Plugin is released as a dev version, available in this maven repository:
30-
31-
```kotlin
32-
maven("https://packages.jetbrains.team/maven/p/kt/dev/")
33-
```
34-
35-
Setup repositories for dependencies in `build.gradle.kts`:
36-
```kotlin
37-
repositories {
38-
maven("https://packages.jetbrains.team/maven/p/kt/dev/")
39-
mavenCentral()
40-
}
41-
```
42-
43-
Setup repositories for plugins in `settings.gradle.kts`
44-
```kotlin
45-
pluginManagement {
46-
repositories {
47-
maven("https://packages.jetbrains.team/maven/p/kt/dev/")
48-
mavenCentral()
49-
gradlePluginPortal()
50-
}
51-
}
52-
```
53-
5429
Add this line to `gradle.properties`:
5530
```properties
5631
kotlin.incremental=false

0 commit comments

Comments
 (0)