File tree 5 files changed +2
-10
lines changed
5 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ buildscript {
46
46
mavenCentral()
47
47
maven { url " https://plugins.gradle.org/m2/" }
48
48
maven { url " https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
49
- maven { url ' https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev' }
50
49
mavenLocal()
51
50
}
52
51
@@ -128,7 +127,6 @@ allprojects {
128
127
google()
129
128
mavenCentral()
130
129
maven { url " https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
131
- maven { url ' https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev' }
132
130
}
133
131
}
134
132
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ repositories {
19
19
maven(" https://plugins.gradle.org/m2" )
20
20
}
21
21
maven(" https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" )
22
- maven(" https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev" )
23
22
if (buildSnapshotTrain) {
24
23
mavenLocal()
25
24
}
Original file line number Diff line number Diff line change 4
4
pluginManagement {
5
5
val build_snapshot_train: String? by settings
6
6
repositories {
7
- maven(url = " https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev/" )
8
7
val cacheRedirectorEnabled = System .getenv(" CACHE_REDIRECTOR" )?.toBoolean() == true
9
8
if (cacheRedirectorEnabled) {
10
9
println (" Redirecting repositories for buildSrc buildscript" )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ atomicfu_version=0.17.0
14
14
knit_version =0.3.0
15
15
html_version =0.7.2
16
16
lincheck_version =2.14
17
- dokka_version =1.6.0-dev-138
17
+ dokka_version =1.6.10
18
18
byte_buddy_version =1.10.9
19
19
reactor_version =3.4.1
20
20
reactive_streams_version =1.0.3
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ tasks.withType(DokkaTaskPartial::class).configureEach {
37
37
packageListUrl.set(rootProject.projectDir.toPath().resolve(" site/stdlib.package.list" ).toUri().toURL())
38
38
}
39
39
40
- if (project.name != " kotlinx-coroutines-core " && project.name != " kotlinx-coroutines-test " ) {
40
+ if (! project.isMultiplatform ) {
41
41
dependsOn(project.configurations[" compileClasspath" ])
42
42
doFirst {
43
43
// resolve classpath only during execution
@@ -66,10 +66,6 @@ if (project.name == "kotlinx-coroutines-core") {
66
66
val jvmMain by getting {
67
67
makeLinkMapping(project.file(" jvm" ))
68
68
}
69
-
70
- configureEach {
71
- classpath.from(project.configurations[" jvmCompileClasspath" ].files)
72
- }
73
69
}
74
70
}
75
71
}
You can’t perform that action at this time.
0 commit comments