blob: b8e63b17837554eaf3d166bd4cb263fd69e031ff (
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
76
77
78
79
80
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
id("org.jetbrains.conventions.maven-publish")
}
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.testUtils)
testImplementation(projects.core.testApi)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
}
val projectDistDir = project(":plugins:base:frontend").file("dist")
val generateFrontendFiles = tasks.getByPath(":plugins:base:frontend:generateFrontendFiles")
val copyJsFiles by tasks.registering(Copy::class) {
from(projectDistDir) {
include("*.js")
}
dependsOn(generateFrontendFiles)
destinationDir =
File(sourceSets.main.get().resources.sourceDirectories.singleFile, "dokka/scripts")
}
val copyCssFiles by tasks.registering(Copy::class) {
from(projectDistDir) {
include("*.css")
}
dependsOn(generateFrontendFiles)
destinationDir =
File(sourceSets.main.get().resources.sourceDirectories.singleFile, "dokka/styles")
}
val copyFrontend by tasks.registering {
dependsOn(copyJsFiles, copyCssFiles)
}
tasks {
processResources {
dependsOn(copyFrontend)
}
sourcesJar {
dependsOn(processResources)
}
test {
maxHeapSize = "4G"
}
}
registerDokkaArtifactPublication("dokkaBase") {
artifactId = "dokka-base"
}
|