File tree 7 files changed +9
-10
lines changed
native/kotlinx-coroutines-core-native/src/internal
7 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ buildscript {
12
12
}
13
13
repositories {
14
14
jcenter()
15
+ maven { url " https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
15
16
maven { url " https://kotlin.bintray.com/kotlinx" }
16
17
maven { url " https://kotlin.bintray.com/kotlin-dev" }
17
18
maven { url " https://kotlin.bintray.com/kotlin-eap" }
@@ -63,6 +64,7 @@ allprojects {
63
64
google()
64
65
}
65
66
jcenter()
67
+ maven { url " https://teamcity.jetbrains.com/guestAuth/app/rest/builds/id:1907319/artifacts/content/maven" }
66
68
maven { url " https://kotlin.bintray.com/kotlin-dev" }
67
69
maven { url " https://kotlin.bintray.com/kotlin-eap" }
68
70
maven { url " https://kotlin.bintray.com/kotlinx" }
Original file line number Diff line number Diff line change 1
1
# Kotlin
2
2
version =1.1.0-SNAPSHOT
3
3
group =org.jetbrains.kotlinx
4
- kotlin_version =1.3.11
5
- kotlin_native_version =1.3.11
4
+ kotlin_version =1.3.20
5
+ kotlin_native_version =1.3.20
6
6
7
7
# Dependencies
8
8
junit_version =4.12
9
- atomicFU_version =0.12.0
9
+ atomicFU_version =0.12.1
10
10
html_version =0.6.8
11
11
lincheck_version =2.0
12
12
dokka_version =0.9.16-rdev-2-mpp-hacks
Original file line number Diff line number Diff line change @@ -117,10 +117,7 @@ bintrayUpload.doFirst {
117
117
if (! isNative()) {
118
118
afterEvaluate {
119
119
publishing. publications. each { pub ->
120
- pub. gradleModuleMetadataFile = null
121
- tasks. matching { it. name == " generateMetadataFileFor${ pub.name.capitalize()} Publication" }. all {
122
- onlyIf { false }
123
- }
120
+ pub. moduleDescriptorGenerator = null
124
121
}
125
122
}
126
123
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.7 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ internal actual fun <E> subscriberList(): MutableList<E> = CopyOnWriteList<E>()
18
18
internal actual fun <E > identitySet (expectedSize : Int ): MutableSet <E > = HashSet ()
19
19
20
20
@Suppress(" ACTUAL_WITHOUT_EXPECT" )
21
- internal actual typealias SharedImmutable = kotlin.native.SharedImmutable
21
+ internal actual typealias SharedImmutable = kotlin.native.concurrent. SharedImmutable
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ package kotlinx.coroutines.internal
6
6
import kotlin.native.concurrent.*
7
7
8
8
@Suppress(" ACTUAL_WITHOUT_EXPECT" )
9
- internal actual typealias NativeThreadLocal = kotlin.native.ThreadLocal
9
+ internal actual typealias NativeThreadLocal = kotlin.native.concurrent. ThreadLocal
10
10
11
11
internal actual class CommonThreadLocal <T > actual constructor() {
12
12
private var value: T ? = null
You can’t perform that action at this time.
0 commit comments