From 9a5bbcb00bcdf40178b1e905c32de792d5484db8 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Tue, 21 May 2019 16:48:32 +0900 Subject: [PATCH] Pill: Recognize 'embedded' configuration as 'compile' in JPS --- buildSrc/src/main/kotlin/pill/parser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/pill/parser.kt b/buildSrc/src/main/kotlin/pill/parser.kt index 104cea79733..2ff49ba897f 100644 --- a/buildSrc/src/main/kotlin/pill/parser.kt +++ b/buildSrc/src/main/kotlin/pill/parser.kt @@ -130,7 +130,7 @@ fun parse(project: Project, libraries: List, context: ParserContext): */ private val CONFIGURATION_MAPPING = mapOf( listOf("runtime") to Scope.RUNTIME, - listOf("compile") to Scope.COMPILE, + listOf("compile", "embedded") to Scope.COMPILE, listOf("compileOnly") to Scope.PROVIDED )