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 )