Skip to content

Commit

Permalink
Exclude compiler from buildscript in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed May 25, 2022
1 parent 5a718cc commit 36931de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integration-tests/gradle/projects/it-basic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ plugins {

buildscript {
dependencies {
classpath("org.jetbrains.dokka:dokka-base:${System.getenv("DOKKA_VERSION")}")
classpath("org.jetbrains.dokka:dokka-base:${System.getenv("DOKKA_VERSION")}") {
exclude(group = "org.jetbrains.dokka", module = "dokka-analysis") // Gradle has embeddable Kotlin compiler
}
}
}

Expand Down

0 comments on commit 36931de

Please sign in to comment.