Skip to content

Commit c67580e

Browse files
committed
update gradle
1 parent 327def0 commit c67580e

File tree

6 files changed

+13
-15
lines changed

6 files changed

+13
-15
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
}
1414
}
1515
plugins {
16-
id 'org.jetbrains.kotlin.multiplatform' version '1.6.10'
16+
id 'org.jetbrains.kotlin.multiplatform' version '1.6.20'
1717
}
1818
apply plugin: 'compiler.gradleplugin.helloworld'
1919

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
2+
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
33
}
44
apply plugin: "maven"
55

buildSrc/compiler-plugin/gradle-plugin/build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
apply plugin: "java-gradle-plugin"
2-
apply plugin: "org.jetbrains.kotlin.jvm"
3-
apply plugin: "kotlin-kapt"
1+
plugins {
2+
id "org.jetbrains.kotlin.jvm"
3+
id "org.jetbrains.kotlin.kapt"
4+
id 'java-gradle-plugin'
5+
}
46
apply plugin: "maven"
57

68

@@ -25,5 +27,5 @@ gradlePlugin {
2527
}
2628

2729
dependencies {
28-
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.6.0"
30+
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.6.20"
2931
}

buildSrc/compiler-plugin/kotlin-native-plugin/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
plugins {
22
id("maven")
3-
id 'org.jetbrains.kotlin.jvm'
4-
}
5-
6-
apply plugin: "kotlin-kapt"
3+
id "org.jetbrains.kotlin.jvm"
4+
id "org.jetbrains.kotlin.kapt"
75

6+
}
87

98
group = "de.jensklingenberg"
109
archivesBaseName = "helloworld-compiler-plugin-native"

buildSrc/compiler-plugin/kotlin-plugin/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
plugins {
22
id("maven")
33
id 'org.jetbrains.kotlin.jvm'
4-
}
5-
6-
apply plugin: "kotlin-kapt"
4+
id "org.jetbrains.kotlin.kapt"
75

6+
}
87

98
group = "de.jensklingenberg"
109
archivesBaseName = "helloworld-compiler-plugin"

gradle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
kotlin.incremental=false
2-
kotlin.coroutines=enable
32
org.gradle.daemon=false
43
org.gradle.parallel=false
54
org.gradle.configureondemand=false
65
kotlin.compiler.execution.strategy=in-process
76
kotlin.daemon.debug.log=true
8-
org.gradle.jvmargs=-Xmx6g -XX:MaxPermSize=1024m
97

0 commit comments

Comments
 (0)