diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 6a6f9e2..cab0d18 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -18,6 +18,6 @@ dependencies { // With Kotlin 2.0.20, a "Could not parse POM" build error occurs in the JVM projects of some dependent projects. implementation(kotlin("gradle-plugin", "2.0.10")) implementation("com.huanshankeji:common-gradle-dependencies:0.8.0-20241016") // don't use a snapshot version in a main branch - implementation("com.huanshankeji.team:gradle-plugins:0.6.0") // don't use a snapshot version in a main branch + implementation("com.huanshankeji.team:gradle-plugins:0.7.0") // don't use a snapshot version in a main branch implementation("org.jetbrains.dokka:dokka-gradle-plugin:2.0.0-Beta") } diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 54f9243..354f568 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -1,6 +1,6 @@ plugins { conventions - id("org.jetbrains.dokka") + id("com.huanshankeji.team.dokka.github-dokka-convention") } dependencies { @@ -9,12 +9,3 @@ dependencies { implementation(commonDependencies.kotlinCommon.reflect()) implementation(commonDependencies.kotlinCommon.core()) } - -dokka { - dokkaSourceSets.all { - sourceLink { - remoteUrl("https://github.com/huanshankeji/exposed-adt-mapping/tree/v${version}/lib") - remoteLineSuffix.set("#L") - } - } -}