aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2022-06-09 18:02:44 +0300
committerGitHub <noreply@github.com>2022-06-09 18:02:44 +0300
commit7e877abf5c2715ab5efa27a38b83d0bf9be1374b (patch)
treeeb010be8299fad7f639097912de253e8d5058f83 /integration-tests/gradle
parent8c2a79f39377892be44d752d0958efb9b83f1fce (diff)
downloaddokka-7e877abf5c2715ab5efa27a38b83d0bf9be1374b.tar.gz
dokka-7e877abf5c2715ab5efa27a38b83d0bf9be1374b.tar.bz2
dokka-7e877abf5c2715ab5efa27a38b83d0bf9be1374b.zip
Make `dokka-analysis` dependency compileOnly in base plugin (#2521)
Diffstat (limited to 'integration-tests/gradle')
-rw-r--r--integration-tests/gradle/projects/it-basic/build.gradle.kts4
1 files changed, 1 insertions, 3 deletions
diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts
index 3f7dd32b..b2a84e5f 100644
--- a/integration-tests/gradle/projects/it-basic/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts
@@ -12,9 +12,7 @@ plugins {
buildscript {
dependencies {
- classpath("org.jetbrains.dokka:dokka-base:${System.getenv("DOKKA_VERSION")}") {
- exclude(group = "org.jetbrains.dokka", module = "dokka-analysis") // Gradle has embeddable Kotlin compiler
- }
+ classpath("org.jetbrains.dokka:dokka-base:${System.getenv("DOKKA_VERSION")}")
}
}