File tree Expand file tree Collapse file tree 6 files changed +19
-62
lines changed Expand file tree Collapse file tree 6 files changed +19
-62
lines changed Original file line number Diff line number Diff line change @@ -8,26 +8,21 @@ buildscript {
8
8
}
9
9
10
10
plugins {
11
- id(" kotlinx.team.infra" ) version " 0.1.0-dev-51 "
11
+ id(" kotlinx.team.infra" ) version " 0.1.0-dev-53 "
12
12
}
13
13
14
14
project(" :kotlinx-datetime" ) {
15
15
pluginManager.apply (" kotlin-multiplatform" )
16
16
// pluginManager.apply("maven-publish")
17
17
}
18
18
19
- project(" :kotlinx-datetime-darwin" ) {
20
- pluginManager.apply (" kotlin-multiplatform" )
21
- }
22
-
23
19
infra {
24
20
teamcity {
25
21
bintrayUser = " %env.BINTRAY_USER%"
26
22
bintrayToken = " %env.BINTRAY_API_KEY%"
27
23
}
28
24
publishing {
29
25
include(" :kotlinx-datetime" )
30
- include(" :kotlinx-datetime-darwin" )
31
26
32
27
bintray {
33
28
organization = " kotlin"
Original file line number Diff line number Diff line change @@ -27,17 +27,20 @@ val JDK_8: String by project
27
27
28
28
kotlin {
29
29
infra {
30
- target(" macosX64" )
31
- target(" iosX64" )
32
- target(" iosArm64" )
33
- target(" iosArm32" )
34
30
target(" linuxX64" )
35
31
target(" mingwX64" )
36
- target(" watchosArm32" )
37
- target(" watchosArm64" )
38
- target(" watchosX86" )
39
- target(" tvosArm64" )
40
- target(" tvosX64" )
32
+
33
+ common(" darwin" ) {
34
+ target(" macosX64" )
35
+ target(" iosX64" )
36
+ target(" iosArm64" )
37
+ target(" iosArm32" )
38
+ target(" watchosArm32" )
39
+ target(" watchosArm64" )
40
+ target(" watchosX86" )
41
+ target(" tvosArm64" )
42
+ target(" tvosX64" )
43
+ }
41
44
}
42
45
43
46
jvm {
@@ -87,6 +90,7 @@ kotlin {
87
90
}
88
91
89
92
sourceSets.all {
93
+ // println("SOURCE_SET: $name")
90
94
kotlin.setSrcDirs(listOf (" $name /src" ))
91
95
resources.setSrcDirs(listOf (" $name /resources" ))
92
96
languageSettings.apply {
@@ -187,13 +191,11 @@ kotlin {
187
191
val nativeTest by getting {
188
192
}
189
193
190
- // val mingwX64Main by getting {
191
- // kotlin.srcDir("nativeMain/cinterop_actuals")
192
- // }
193
- //
194
- // val linuxX64Main by getting {
195
- // kotlin.srcDir("nativeMain/cinterop_actuals")
196
- // }
194
+ val darwinMain by getting {
195
+ }
196
+
197
+ val darwinTest by getting {
198
+ }
197
199
}
198
200
}
199
201
File renamed without changes.
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,6 +13,3 @@ rootProject.name = 'Kotlin-DateTime-library'
13
13
14
14
include ' :core'
15
15
project(" :core" ). name= ' kotlinx-datetime'
16
-
17
- include ' :darwin-integration'
18
- project(" :darwin-integration" ). name= ' kotlinx-datetime-darwin'
You can’t perform that action at this time.
0 commit comments