File tree Expand file tree Collapse file tree 5 files changed +22
-19
lines changed
Expand file tree Collapse file tree 5 files changed +22
-19
lines changed Original file line number Diff line number Diff line change 11plugins {
22 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
54}
65
76infra {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import java.util.Locale
44import javax.xml.parsers.DocumentBuilderFactory
55
66plugins {
7- id( " kotlin- multiplatform" )
7+ kotlin( " multiplatform" )
88 kotlin(" plugin.serialization" )
99 `maven- publish`
1010}
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ group=org.jetbrains.kotlinx
44version =0.2.1
55versionSuffix =SNAPSHOT
66
7+ kotlinVersion =1.5.0
78serializationVersion =1.2.1
89
910kotlin.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