Sergey Shanshin | 4236a7e | 2021-02-03 22:32:37 +0300 | [diff] [blame] | 1 | import org.jetbrains.kotlin.gradle.plugin.* |
| 2 | import java.util.* |
| 3 | |
| 4 | plugins { |
| 5 | `kotlin-dsl` |
| 6 | } |
| 7 | |
| 8 | repositories { |
Leonid Startsev | 6a8dc86 | 2021-02-04 17:03:31 +0300 | [diff] [blame] | 9 | mavenCentral() |
Sergey Shanshin | 4236a7e | 2021-02-03 22:32:37 +0300 | [diff] [blame] | 10 | } |
| 11 | |
Gerard de Leeuw | cf6e41a | 2021-09-03 16:08:35 +0200 | [diff] [blame^] | 12 | dependencies { |
| 13 | implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30-RC") |
| 14 | } |
| 15 | |
Sergey Shanshin | 4236a7e | 2021-02-03 22:32:37 +0300 | [diff] [blame] | 16 | kotlinDslPluginOptions { |
| 17 | experimentalWarning.set(false) |
| 18 | } |