File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -32,27 +32,35 @@ Open your Gradle build file, and add the following lines:
32
32
<div id =" gradle-kotlin " class =" tabcontent " markdown =" 1 " >
33
33
34
34
``` kotlin
35
+ plugins {
36
+ kotlin(" multiplatform" ) version " 1.6.21"
37
+ // other plugins
38
+ id(" io.arrow-kt.analysis.kotlin" ) version " 2.0.2"
39
+ }
40
+
35
41
buildscript {
36
- dependencies {
37
- classpath( " io.arrow-kt.analysis.kotlin:io.arrow-kt.analysis.kotlin.gradle.plugin:2.0 " )
42
+ repositories {
43
+ mavenCentral( )
38
44
}
39
45
}
40
-
41
- apply (plugin = " io.arrow-kt.analysis.kotlin" )
42
46
```
43
47
44
48
</div >
45
49
46
50
<div id =" gradle-groovy " class =" tabcontent " markdown =" 1 " >
47
51
48
52
``` groovy
53
+ plugins {
54
+ id 'org.jetbrains.kotlin.multiplatform' version '1.6.21'
55
+ // other plugins
56
+ id 'io.arrow-kt.analysis.kotlin' version '2.0.2'
57
+ }
58
+
49
59
buildscript {
50
- dependencies {
51
- classpath 'io.arrow-kt.analysis.kotlin:io.arrow-kt.analysis.kotlin.gradle.plugin:2.0'
60
+ repositories {
61
+ mavenCentral()
52
62
}
53
63
}
54
-
55
- apply plugin: 'io.arrow-kt.analysis.kotlin'
56
64
```
57
65
58
66
</div >
You can’t perform that action at this time.
0 commit comments