From d453a2fc9236859d6e02fcc30155143c6ab7e235 Mon Sep 17 00:00:00 2001 From: Sergey Igushkin Date: Tue, 17 Oct 2017 14:37:11 +0300 Subject: [PATCH] Use `runtimeJar` configuration instead of default for plugin markers. --- libraries/tools/gradle-tools/pluginMarkers.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tools/gradle-tools/pluginMarkers.gradle b/libraries/tools/gradle-tools/pluginMarkers.gradle index dac6a460c26..30d94e958c8 100644 --- a/libraries/tools/gradle-tools/pluginMarkers.gradle +++ b/libraries/tools/gradle-tools/pluginMarkers.gradle @@ -14,7 +14,7 @@ ext.pluginMarkerProject = { String pluginProjectId -> apply plugin: 'java' dependencies { - compile pluginProject + compile project(path: pluginProject.path, configuration: 'runtimeJar') } // Remove the default JAR artifact added by the Java plugin