File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
kotlin.code.style =official
2
2
3
3
GROUP =co.touchlab
4
- VERSION_NAME =1.0.2
4
+ VERSION_NAME =1.0.3
5
+ KOTLIN_VERSION =1.5.0
5
6
6
7
kotlin.native.ignoreDisabledTargets =true
7
8
Original file line number Diff line number Diff line change @@ -3,11 +3,15 @@ rootProject.name = "sqliter"
3
3
include(" :sqliter-driver" )
4
4
5
5
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
+ }
11
15
}
12
16
13
17
enableFeaturePreview(" GRADLE_METADATA" )
Original file line number Diff line number Diff line change 1
1
plugins {
2
- kotlin(" multiplatform" ) version " 1.5.0 "
2
+ kotlin(" multiplatform" )
3
3
}
4
4
5
5
val GROUP : String by project
You can’t perform that action at this time.
0 commit comments