aboutsummaryrefslogtreecommitdiff
path: root/plugins/all-modules-page/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/all-modules-page/build.gradle.kts')
-rw-r--r--plugins/all-modules-page/build.gradle.kts34
1 files changed, 0 insertions, 34 deletions
diff --git a/plugins/all-modules-page/build.gradle.kts b/plugins/all-modules-page/build.gradle.kts
deleted file mode 100644
index c596837b..00000000
--- a/plugins/all-modules-page/build.gradle.kts
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-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)
- compileOnly(projects.subprojects.analysisKotlinApi)
-
- implementation(projects.plugins.base)
- implementation(projects.plugins.templating)
-
- implementation(projects.subprojects.analysisMarkdownJb)
-
- implementation(libs.kotlinx.html)
-
- testImplementation(kotlin("test"))
- testImplementation(projects.plugins.base)
- testImplementation(projects.plugins.base.baseTestUtils)
- testImplementation(projects.plugins.gfm)
- testImplementation(projects.plugins.gfm.gfmTemplateProcessing)
- testImplementation(projects.core.contentMatcherTestUtils)
- testImplementation(projects.core.testApi)
-}