File tree 5 files changed +22
-19
lines changed
5 files changed +22
-19
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" kotlinx.team.infra" ) version " 0.3.0-dev-64"
3
- kotlin(" multiplatform" ) version " 1.5.0" apply false
4
- kotlin(" plugin.serialization" ) version " 1.5.0" apply false
3
+ kotlin(" multiplatform" ) apply false
5
4
}
6
5
7
6
infra {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import java.util.Locale
4
4
import javax.xml.parsers.DocumentBuilderFactory
5
5
6
6
plugins {
7
- id( " kotlin- multiplatform" )
7
+ kotlin( " multiplatform" )
8
8
kotlin(" plugin.serialization" )
9
9
`maven- publish`
10
10
}
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ group=org.jetbrains.kotlinx
4
4
version =0.2.1
5
5
versionSuffix =SNAPSHOT
6
6
7
+ kotlinVersion =1.5.0
7
8
serializationVersion =1.2.1
8
9
9
10
kotlin.mpp.enableGranularSourceSetsMetadata =true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ pluginManagement {
2
+ repositories {
3
+ maven(url = " https://maven.pkg.jetbrains.space/kotlin/p/kotlinx/maven" )
4
+ mavenCentral()
5
+ gradlePluginPortal()
6
+ }
7
+ val kotlinVersion: String by settings
8
+ plugins {
9
+ kotlin(" multiplatform" ) version kotlinVersion
10
+ kotlin(" plugin.serialization" ) version kotlinVersion
11
+ }
12
+ }
13
+
14
+ rootProject.name = " Kotlin-DateTime-library"
15
+
16
+ include(" :core" )
17
+ project(" :core" ).name = " kotlinx-datetime"
18
+ include(" :serialization" )
19
+ project(" :serialization" ).name = " kotlinx-datetime-serialization"
You can’t perform that action at this time.
0 commit comments