1
1
import org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
2
2
import org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED
3
3
import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
4
+ import org.jetbrains.dokka.gradle.engine.parameters.VisibilityModifier
4
5
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig.Mode.PRODUCTION
6
+ import java.time.LocalDateTime
5
7
6
8
buildscript {
7
9
dependencies {
@@ -204,6 +206,7 @@ idea {
204
206
205
207
dokka {
206
208
moduleName.set(" QRCode-Kotlin" )
209
+ basePublicationsDirectory = layout.buildDirectory.dir(" javadoc" )
207
210
208
211
dokkaSourceSets {
209
212
configureEach {
@@ -212,23 +215,38 @@ dokka {
212
215
skipEmptyPackages = true
213
216
suppressGeneratedFiles = true
214
217
218
+ documentedVisibilities = setOf (VisibilityModifier .Public )
219
+
215
220
sourceLink {
216
- localDirectory.set(file(" src/main/kotlin" ))
221
+ // localDirectory.set(file("src/main/kotlin"))
217
222
remoteUrl(" https://qrcodekotlin.com/dokka" )
218
223
}
219
224
}
220
225
}
221
226
222
227
pluginsConfiguration.html {
223
- footerMessage.set(" (c) Your Company " )
228
+ footerMessage.set(" © 2021- ${ LocalDateTime .now().year} Rafael M. Lins - MIT License " )
224
229
}
225
230
}
226
231
227
232
val dokkaJar by tasks.registering(Jar ::class ) {
228
233
group = JavaBasePlugin .DOCUMENTATION_GROUP
229
234
description = " Assembles Kotlin docs with Dokka"
230
235
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
+ }
232
250
}
233
251
234
252
/* **************** */
0 commit comments