Skip to content

Commit

Permalink
Resolve the Dokka "could not resolve" issue with the official solution
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Nov 6, 2024
1 parent d2ee3ed commit 314a8e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 0 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ plugins {
id("org.jetbrains.dokka")
}

// workaround for https://github.com/Kotlin/dokka/issues/3903 from https://github.com/Kotlin/dokka/issues/2260 TODO remove when it's fixed
repositories {
mavenCentral()
}

dependencies {
listOf(
"compose-html-common",
Expand Down
8 changes: 8 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ include("compose-html-material-legacy")
include("compose-html-material3")
include("gradle-plugins")
project(":gradle-plugins").name = "compose-html-material-gradle-plugins-legacy"

// for Dokka
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}

0 comments on commit 314a8e1

Please sign in to comment.