Skip to content

Commit aee4790

Browse files
feat(dokka-v2): Updating Dokka Gradle stuff to v2
1 parent db6c0f1 commit aee4790

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

.github/workflows/dokka-update.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
with:
1919
java-version: "17"
2020
distribution: "temurin"
21+
cache: gradle
22+
- name: Give execute permission to ./gradlew
23+
run: chmod +x ./gradlew
2124
- name: Run Dokka Update
22-
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3
23-
with:
24-
arguments: :dokkaGfm
25+
run: "./gradlew dokkaGenerate"
2526
- name: Commit Changes
2627
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
2728
with:

build.gradle.kts

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
22
import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED
33
import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
4+
import org.jetbrains.dokka.gradle.engine.parameters.VisibilityModifier
45
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig.Mode.PRODUCTION
6+
import java.time.LocalDateTime
57

68
buildscript {
79
dependencies {
@@ -204,6 +206,7 @@ idea {
204206

205207
dokka {
206208
moduleName.set("QRCode-Kotlin")
209+
basePublicationsDirectory = layout.buildDirectory.dir("javadoc")
207210

208211
dokkaSourceSets {
209212
configureEach {
@@ -212,23 +215,38 @@ dokka {
212215
skipEmptyPackages = true
213216
suppressGeneratedFiles = true
214217

218+
documentedVisibilities = setOf(VisibilityModifier.Public)
219+
215220
sourceLink {
216-
localDirectory.set(file("src/main/kotlin"))
221+
// localDirectory.set(file("src/main/kotlin"))
217222
remoteUrl("https://qrcodekotlin.com/dokka")
218223
}
219224
}
220225
}
221226

222227
pluginsConfiguration.html {
223-
footerMessage.set("(c) Your Company")
228+
footerMessage.set("© 2021-${LocalDateTime.now().year} Rafael M. Lins - MIT License")
224229
}
225230
}
226231

227232
val dokkaJar by tasks.registering(Jar::class) {
228233
group = JavaBasePlugin.DOCUMENTATION_GROUP
229234
description = "Assembles Kotlin docs with Dokka"
230235
archiveClassifier.set("javadoc")
231-
from(dokka)
236+
from(tasks.dokkaGenerate)
237+
}
238+
239+
val dokkaCopyToFolder by tasks.registering(Copy::class) {
240+
doFirst { layout.projectDirectory.dir("docs/dokka").asFile.deleteRecursively() }
241+
242+
from(layout.buildDirectory.dir("dokka/html"))
243+
into(layout.projectDirectory.dir("docs/dokka"))
244+
}
245+
246+
tasks {
247+
dokkaGenerate {
248+
finalizedBy(dokkaCopyToFolder)
249+
}
232250
}
233251

234252
/* **************** */

0 commit comments

Comments
 (0)