Skip to content

Commit

Permalink
US2012874: fix issue with Dokka plugin following to Gradle plugin - see
Browse files Browse the repository at this point in the history
  • Loading branch information
ochalet-wp committed Aug 19, 2024
1 parent d7a559f commit 6dc6599
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions access-checkout/gradle/upload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ dokkaJavadoc.configure {
}
}

// Task dependency is required due to an issue in Dokka
// see https://github.com/Kotlin/dokka/issues/3153
dokkaJavadoc.dependsOn(':access-checkout:generateReleaseRFile')

tasks.register('javadocJar', Jar) {
dependsOn dokkaJavadoc
archiveClassifier = "javadoc"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:8.5.2'

classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.6.21'
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.9.20'
classpath 'org.jacoco:org.jacoco.core:0.8.10'
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
classpath 'org.jlleitschuh.gradle:ktlint-gradle:10.1.0'
Expand Down

0 comments on commit 6dc6599

Please sign in to comment.