From 2943f70db950824eb571d446db183bd55f1ff070 Mon Sep 17 00:00:00 2001 From: Nikita Klimenko Date: Thu, 30 Jul 2026 18:35:49 +0300 Subject: [PATCH] Use testImplementation for dataframe-jupyter in openapi-generator Kotlin now warns that API dependencies in test source sets are deprecated, since test source sets are not consumable. Switch testApi to testImplementation. Co-Authored-By: Claude Opus 4.7 (1M context) --- dataframe-openapi-generator/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataframe-openapi-generator/build.gradle.kts b/dataframe-openapi-generator/build.gradle.kts index a48d8b2cf5..adc0c9cbc2 100644 --- a/dataframe-openapi-generator/build.gradle.kts +++ b/dataframe-openapi-generator/build.gradle.kts @@ -26,7 +26,7 @@ dependencies { exclude("jakarta.validation") } - testApi(projects.dataframeJupyter) + testImplementation(projects.dataframeJupyter) testImplementation(libs.junit) testImplementation(libs.kotestAssertions) { exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")