-
Notifications
You must be signed in to change notification settings - Fork 454
Labels
Description
Describe the bug
I use Kotlin 1.6.20-RC2 with multiplatform
and a common dependency.
Expected behaviour
Documentation referencing the external class from the dependency is resolved
To Reproduce
untitled1.zip
Dokka configuration
plugins {
kotlin("multiplatform") version "1.6.20-RC2"
id("org.jetbrains.dokka") version "1.6.10"
}
repositories {
mavenCentral()
}
kotlin {
js(IR) {
browser()
}
jvm()
sourceSets {
commonMain {
dependencies {
// 0.0.12 uses Kotlin 1.5.30, 0.0.13-RC uses 1.6.20-RC2
implementation("app.softwork:kotlinx-uuid-core:0.0.13-RC")
}
}
}
}
Installation
- Operating system: macOS 12
- Build tool: Gradle v7.4.1
- Dokka version: 1.6.10
Additional context
Using Kotlin 1.6.10 works
Are you willing to provide a PR?
Sure, but I don't know if this is a Dokka or Kotlin bug