blob: b6ba2917667d63fd98e4d9eeb5f41c53bf8840c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
id("org.jetbrains.conventions.maven-publish")
id("org.jetbrains.conventions.dokka-html-frontend-files")
}
dependencies {
compileOnly(projects.core)
implementation(kotlin("reflect"))
implementation(libs.kotlinx.coroutines.core)
compileOnly(projects.kotlinAnalysis)
implementation(libs.jsoup)
implementation(libs.jackson.kotlin)
constraints {
implementation(libs.jackson.databind) {
because("CVE-2022-42003")
}
}
implementation(libs.freemarker)
testImplementation(projects.plugins.base.baseTestUtils)
testImplementation(projects.core.contentMatcherTestUtils)
implementation(libs.kotlinx.html)
testImplementation(projects.kotlinAnalysis)
testImplementation(projects.core.testApi)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
dokkaHtmlFrontendFiles(projects.plugins.base.frontend) {
because("fetch frontend files from subproject :plugins:base:frontend")
}
}
// access the frontend files via the dependency on :plugins:base:frontend
val dokkaHtmlFrontendFiles: Provider<FileCollection> =
configurations.dokkaHtmlFrontendFiles.map { frontendFiles ->
frontendFiles.incoming.artifacts.artifactFiles
}
val preparedokkaHtmlFrontendFiles by tasks.registering(Sync::class) {
description = "copy Dokka Base frontend files into the resources directory"
from(dokkaHtmlFrontendFiles) {
include("*.js")
into("dokka/scripts")
}
from(dokkaHtmlFrontendFiles) {
include("*.css")
into("dokka/styles")
}
into(layout.buildDirectory.dir("generated/src/main/resources"))
}
sourceSets.main {
resources.srcDir(preparedokkaHtmlFrontendFiles.map { it.destinationDir })
}
tasks.test {
maxHeapSize = "4G"
}
registerDokkaArtifactPublication("dokkaBase") {
artifactId = "dokka-base"
}
|