Skip to content

Commit

Permalink
chore: add workaround for kapt failure "Number of loaded files in sna…
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Dec 30, 2023
1 parent b36a9c4 commit 05c8659
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,10 @@ tasks.jar {
from("$rootDir/xdocs/images/logo.svg")
}
}

afterEvaluate {
tasks.named("kaptTestFixturesKotlin") {
// Workaround for https://youtrack.jetbrains.com/issue/KT-45329/IDE-KAPT-Number-of-loaded-files-in-snapshots-differs-when-using-Run-with-Coverage-and-project-has-Java-and-Kotlin-targets-with
inputs.property("wa.to.trigger.full.recompilation", "1")
}
}

0 comments on commit 05c8659

Please sign in to comment.