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 d215678 commit a90fb09
Show file tree
Hide file tree
Showing 2 changed files with 7 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 {
dokka(project(":exposed-adt-mapping"))
}
7 changes: 7 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ plugins {
rootProject.name = "exposed-adt-mapping"
include("lib")
project(":lib").name = rootProject.name

@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}

0 comments on commit a90fb09

Please sign in to comment.