Skip to content
This repository was archived by the owner on Oct 19, 2021. It is now read-only.

Commit 4ec5ff2

Browse files
authored
Merge pull request #15 from touchlab/kpg/kotlin_140
Fixes for Kotlin 1.4.0
2 parents 375899d + fccb573 commit 4ec5ff2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

gradle-plugin/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ tasks.getByName('pluginUnderTestMetadata').
2626

2727
dependencies {
2828
implementation deps.kotlin.stdlib.jdk
29-
29+
implementation deps.kotlin.native_utils
30+
3031
compileOnly gradleApi()
3132
compileOnly deps.plugins.kotlin
3233

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=co.touchlab
2-
VERSION_NAME=0.10
2+
VERSION_NAME=0.11
33

44
POM_URL=https://github.com/touchlab/KotlinCocoapods/
55
POM_SCM_URL=https://github.com/touchlab/KotlinCocoapods/

gradle/dependencies.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext.versions = [
2-
kotlin: '1.3.61',
2+
kotlin: '1.4.0',
33
]
44

55
ext.deps = [
@@ -11,6 +11,7 @@ ext.deps = [
1111
stdlib: [
1212
jdk: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
1313
],
14+
native_utils: "org.jetbrains.kotlin:kotlin-native-utils:${versions.kotlin}",
1415
test: [
1516
common: "org.jetbrains.kotlin:kotlin-test-common:${versions.kotlin}",
1617
commonAnnotations: "org.jetbrains.kotlin:kotlin-test-annotations-common:${versions.kotlin}",

0 commit comments

Comments
 (0)