blob: 1f64893240396a66303563668c8dfc1211a4dee5 (
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
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("org.jetbrains.conventions.kotlin-jvm")
id("org.jetbrains.conventions.maven-publish")
}
registerDokkaArtifactPublication("dokkaAllModulesPage") {
artifactId = "all-modules-page-plugin"
}
dependencies {
compileOnly(projects.core)
implementation(kotlin("reflect"))
compileOnly(projects.kotlinAnalysis)
implementation(projects.plugins.base)
implementation(projects.plugins.templating)
testImplementation(projects.plugins.base)
testImplementation(projects.plugins.base.baseTestUtils)
testImplementation(projects.plugins.gfm)
testImplementation(projects.plugins.gfm.gfmTemplateProcessing)
testImplementation(projects.core.contentMatcherTestUtils)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.jackson.kotlin)
constraints {
implementation(libs.jackson.databind) {
because("CVE-2022-42003")
}
}
implementation(libs.kotlinx.html)
implementation(libs.jsoup)
testImplementation(projects.testUtils)
testImplementation(projects.core.testApi)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
}
|