Skip to content

Commit

Permalink
Update Dokka to 1.6.10 (#3184)
Browse files Browse the repository at this point in the history
* Update Dokka to 1.6.10
  • Loading branch information
qwwdfsad committed Feb 11, 2022
1 parent ff80ba2 commit 70d0ec7
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 10 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Expand Up @@ -46,7 +46,6 @@ buildscript {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
maven { url 'https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev' }
mavenLocal()
}

Expand Down Expand Up @@ -128,7 +127,6 @@ allprojects {
google()
mavenCentral()
maven { url "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev" }
maven { url 'https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev' }
}
}

Expand Down
1 change: 0 additions & 1 deletion buildSrc/build.gradle.kts
Expand Up @@ -19,7 +19,6 @@ repositories {
maven("https://plugins.gradle.org/m2")
}
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev")
if (buildSnapshotTrain) {
mavenLocal()
}
Expand Down
1 change: 0 additions & 1 deletion buildSrc/settings.gradle.kts
Expand Up @@ -4,7 +4,6 @@
pluginManagement {
val build_snapshot_train: String? by settings
repositories {
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev/")
val cacheRedirectorEnabled = System.getenv("CACHE_REDIRECTOR")?.toBoolean() == true
if (cacheRedirectorEnabled) {
println("Redirecting repositories for buildSrc buildscript")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -14,7 +14,7 @@ atomicfu_version=0.17.0
knit_version=0.3.0
html_version=0.7.2
lincheck_version=2.14
dokka_version=1.6.0-dev-138
dokka_version=1.6.10
byte_buddy_version=1.10.9
reactor_version=3.4.1
reactive_streams_version=1.0.3
Expand Down
6 changes: 1 addition & 5 deletions gradle/dokka.gradle.kts
Expand Up @@ -37,7 +37,7 @@ tasks.withType(DokkaTaskPartial::class).configureEach {
packageListUrl.set(rootProject.projectDir.toPath().resolve("site/stdlib.package.list").toUri().toURL())
}

if (project.name != "kotlinx-coroutines-core" && project.name != "kotlinx-coroutines-test") {
if (!project.isMultiplatform) {
dependsOn(project.configurations["compileClasspath"])
doFirst {
// resolve classpath only during execution
Expand Down Expand Up @@ -66,10 +66,6 @@ if (project.name == "kotlinx-coroutines-core") {
val jvmMain by getting {
makeLinkMapping(project.file("jvm"))
}

configureEach {
classpath.from(project.configurations["jvmCompileClasspath"].files)
}
}
}
}

0 comments on commit 70d0ec7

Please sign in to comment.