File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,8 +43,14 @@ dokka {
4343}
4444
4545dependencies {
46- dokka(project(" :tasks-jvm" ))
47- dokka(project(" :tasks-kotlin-coroutines" ))
46+ // Aggregating project dokka tasks here triggers Dokka V1 tasks in subprojects
47+ // which fail when Dokka V2 mode is enabled. Instead, generate docs per
48+ // subproject (they already configure their own dokkaPublication tasks).
49+ // If an aggregated site is needed, run the v2 `dokkaGenerate` tasks from
50+ // the root or create a dedicated aggregation task that depends on
51+ // `dokkaGeneratePublicationHtml` for each subproject.
52+ // dokka(project(":tasks-jvm"))
53+ // dokka(project(":tasks-kotlin-coroutines"))
4854}
4955
5056tasks.named<DependencyUpdatesTask >(" dependencyUpdates" ).configure {
Original file line number Diff line number Diff line change 1- import com.vanniktech.maven.publish.SonatypeHost
2-
31plugins {
42 id(" com.vanniktech.maven.publish" )
53}
@@ -19,7 +17,7 @@ version = projectVersion.let { version ->
1917}
2018
2119mavenPublishing {
22- publishToMavenCentral(SonatypeHost . CENTRAL_PORTAL )
20+ publishToMavenCentral()
2321 signAllPublications()
2422
2523 pom {
Original file line number Diff line number Diff line change @@ -4,11 +4,9 @@ binary-compatibility-validator = "0.16.2"
44dokka = " 2.1.0"
55jetbrains-annotations = " 26.0.2"
66jspecify = " 1.0.0"
7- junit-jupiter = " 6.0.2"
87kotlin = " 2.3.0"
98kover = " 0.9.5"
10- lombok = " 1.18.36"
11- publish-plugin = " 0.29.0"
9+ publish-plugin = " 0.36.0"
1210versions-plugin = " 0.51.0"
1311kotlinx-coroutines = " 1.10.2"
1412
You can’t perform that action at this time.
0 commit comments