Skip to content

Commit 8695089

Browse files
committed
Clean up config and v1.0.3
1 parent 519fdc1 commit 8695089

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
kotlin.code.style=official
22

33
GROUP=co.touchlab
4-
VERSION_NAME=1.0.2
4+
VERSION_NAME=1.0.3
5+
KOTLIN_VERSION=1.5.0
56

67
kotlin.native.ignoreDisabledTargets=true
78

settings.gradle.kts

+9-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ rootProject.name = "sqliter"
33
include(":sqliter-driver")
44

55
pluginManagement {
6-
repositories {
7-
google()
8-
gradlePluginPortal()
9-
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
10-
}
6+
repositories {
7+
google()
8+
gradlePluginPortal()
9+
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
10+
}
11+
val KOTLIN_VERSION: String by settings
12+
plugins {
13+
kotlin("multiplatform") version KOTLIN_VERSION
14+
}
1115
}
1216

1317
enableFeaturePreview("GRADLE_METADATA")

sqliter-driver/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
kotlin("multiplatform") version "1.5.0"
2+
kotlin("multiplatform")
33
}
44

55
val GROUP: String by project

0 commit comments

Comments
 (0)