Jakub Chrzanowski
04/04/2024, 11:50 AMorg.gradle.kotlin.dsl.support.normaliseLineSeparators
function which comes from the gradle-kotlin-dsl.jar
When running unit tests, I see this Jar is present in dependencies, but it’s absent for integration tests created with test suites.
How can I make sure that Gradle Kotlin DSL are added everywhere?Vampire
04/04/2024, 11:54 AMJakub Chrzanowski
04/04/2024, 12:00 PMAdam
04/04/2024, 12:02 PMdependencies {
testFixturesApi(gradleKotlinDsl())
}
Adam
04/04/2024, 12:03 PMgradleKotlinDsl()
to all test suite dependenciesAdam
04/04/2024, 12:04 PM