Skip to content

Commit

Permalink
Clean up config and v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed May 15, 2021
1 parent 519fdc1 commit 8695089
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
kotlin.code.style=official

GROUP=co.touchlab
VERSION_NAME=1.0.2
VERSION_NAME=1.0.3
KOTLIN_VERSION=1.5.0

kotlin.native.ignoreDisabledTargets=true

Expand Down
14 changes: 9 additions & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ rootProject.name = "sqliter"
include(":sqliter-driver")

pluginManagement {
repositories {
google()
gradlePluginPortal()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
repositories {
google()
gradlePluginPortal()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
val KOTLIN_VERSION: String by settings
plugins {
kotlin("multiplatform") version KOTLIN_VERSION
}
}

enableFeaturePreview("GRADLE_METADATA")
2 changes: 1 addition & 1 deletion sqliter-driver/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("multiplatform") version "1.5.0"
kotlin("multiplatform")
}

val GROUP: String by project
Expand Down

0 comments on commit 8695089

Please sign in to comment.