Pill: Recognize 'embedded' configuration as 'compile' in JPS

This commit is contained in:
Yan Zhulanow
2019-05-21 16:48:32 +09:00
parent 95544b0970
commit 9a5bbcb00b
+1 -1
View File
@@ -130,7 +130,7 @@ fun parse(project: Project, libraries: List<PLibrary>, 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
)