diff options
Diffstat (limited to 'dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts')
-rw-r--r-- | dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts b/dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts new file mode 100644 index 00000000..b3643acc --- /dev/null +++ b/dokka-subprojects/plugin-gfm-template-processing/build.gradle.kts @@ -0,0 +1,27 @@ +/* + * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. + */ + +import dokkabuild.overridePublicationArtifactId + +plugins { + id("dokkabuild.kotlin-jvm") + id("dokkabuild.publish-jvm") +} + +overridePublicationArtifactId("gfm-template-processing-plugin") + +dependencies { + compileOnly(projects.dokkaSubprojects.dokkaCore) + + implementation(projects.dokkaSubprojects.pluginBase) + implementation(projects.dokkaSubprojects.pluginGfm) + implementation(projects.dokkaSubprojects.pluginAllModulesPage) + implementation(projects.dokkaSubprojects.pluginTemplating) + + implementation(kotlin("reflect")) + implementation(libs.kotlinx.coroutines.core) + + testImplementation(kotlin("test")) + testImplementation(projects.dokkaSubprojects.coreTestApi) +} |