From 9559158bfeeb274e9ccf1b4563f1b23b42afc493 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 5 Jul 2023 10:04:55 +0200 Subject: Decompose Kotlin/Java analysis (#3034) * Extract analysis into separate modules --- plugins/jekyll/jekyll-template-processing/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/jekyll/jekyll-template-processing') diff --git a/plugins/jekyll/jekyll-template-processing/build.gradle.kts b/plugins/jekyll/jekyll-template-processing/build.gradle.kts index 936c77bd..d18b203e 100644 --- a/plugins/jekyll/jekyll-template-processing/build.gradle.kts +++ b/plugins/jekyll/jekyll-template-processing/build.gradle.kts @@ -7,7 +7,6 @@ plugins { dependencies { compileOnly(projects.core) - implementation(kotlin("reflect")) implementation(projects.plugins.base) implementation(projects.plugins.jekyll) @@ -16,6 +15,7 @@ dependencies { implementation(projects.plugins.gfm) implementation(projects.plugins.gfm.gfmTemplateProcessing) + implementation(kotlin("reflect")) implementation(libs.kotlinx.coroutines.core) testImplementation(projects.core.testApi) -- cgit