diff --git a/build.gradle.kts b/build.gradle.kts index 4b8dba2..8877da2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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", diff --git a/settings.gradle.kts b/settings.gradle.kts index 9cedcae..799d5f2 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -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() + } +}