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

Commit 702a649

Browse files
authored
Merge pull request #16 from touchlab/kpg/kotlin_140
Version 0.12
2 parents cec09ab + bded8aa commit 702a649

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath deps.plugins.kotlin
12+
classpath deps.plugins.kotlinBuild
1313
}
1414
}
1515

gradle-plugin/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ dependencies {
2929
implementation deps.kotlin.native_utils
3030

3131
compileOnly gradleApi()
32-
compileOnly deps.plugins.kotlin
32+
compileOnly deps.plugins.kotlinDependency
3333

3434
testImplementation deps.junit
3535
testImplementation deps.truth
3636

37-
fixtureClasspath deps.plugins.kotlin
37+
fixtureClasspath deps.plugins.kotlinDependency
3838
}
3939

4040
apply from: "$rootDir/gradle/gradle-mvn-push.gradle"

gradle.properties

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

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

gradle/dependencies.gradle

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
ext.versions = [
2-
kotlin: '1.4.0',
2+
kotlinBuild: '1.3.72',
3+
kotlinDependency: '1.4.0',
34
]
45

56
ext.deps = [
67
plugins: [
7-
kotlin: "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
8+
kotlinBuild: "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlinBuild}",
9+
kotlinDependency: "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlinDependency}",
810
],
911

1012
kotlin: [
1113
stdlib: [
12-
jdk: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
14+
jdk: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlinDependency}",
1315
],
14-
native_utils: "org.jetbrains.kotlin:kotlin-native-utils:${versions.kotlin}",
16+
native_utils: "org.jetbrains.kotlin:kotlin-native-utils:${versions.kotlinDependency}",
1517
test: [
16-
common: "org.jetbrains.kotlin:kotlin-test-common:${versions.kotlin}",
17-
commonAnnotations: "org.jetbrains.kotlin:kotlin-test-annotations-common:${versions.kotlin}",
18+
common: "org.jetbrains.kotlin:kotlin-test-common:${versions.kotlinDependency}",
19+
commonAnnotations: "org.jetbrains.kotlin:kotlin-test-annotations-common:${versions.kotlinDependency}",
1820
],
1921
],
2022
junit: 'junit:junit:4.12',

0 commit comments

Comments
 (0)