From 9af0b307a14253a21d11d340a78dd9061abee359 Mon Sep 17 00:00:00 2001 From: Vsevolod Tolstopyatov Date: Mon, 27 Mar 2023 03:01:34 -0700 Subject: Mark utilities.* API as Dokka-internal (#2937) * Deprecate unused declaration, remove inline declaration (as it's binary compatible), opt-in into internal API at project level * Opt-in into DokkaInternalApi where applicable * Get rid of intermediate test-utils module --- plugins/jekyll/build.gradle.kts | 1 - plugins/jekyll/jekyll-template-processing/build.gradle.kts | 1 - 2 files changed, 2 deletions(-) (limited to 'plugins/jekyll') diff --git a/plugins/jekyll/build.gradle.kts b/plugins/jekyll/build.gradle.kts index 489b5e00..ab99e220 100644 --- a/plugins/jekyll/build.gradle.kts +++ b/plugins/jekyll/build.gradle.kts @@ -11,7 +11,6 @@ dependencies { implementation(projects.plugins.base) implementation(projects.plugins.gfm) - testImplementation(projects.testUtils) testImplementation(projects.core.testApi) testImplementation(platform(libs.junit.bom)) testImplementation(libs.junit.jupiter) diff --git a/plugins/jekyll/jekyll-template-processing/build.gradle.kts b/plugins/jekyll/jekyll-template-processing/build.gradle.kts index 354c4ee7..936c77bd 100644 --- a/plugins/jekyll/jekyll-template-processing/build.gradle.kts +++ b/plugins/jekyll/jekyll-template-processing/build.gradle.kts @@ -18,7 +18,6 @@ dependencies { implementation(libs.kotlinx.coroutines.core) - testImplementation(projects.testUtils) testImplementation(projects.core.testApi) testImplementation(platform(libs.junit.bom)) testImplementation(libs.junit.jupiter) -- cgit