in ruler-gradle-plugin/src/main/kotlin/com/spotify/ruler/plugin/dependency/EntryParser.kt [33:39]
fun parse(configuration: Configuration): Map<String, Provider<List<DependencyEntry>>> {
return listOf("android-classes").associateWith { artifactType ->
parseFile(configuration, artifactType, true)
} + listOf("android-res", "android-assets", "android-jni").associateWith { artifactType ->
parseFile(configuration, artifactType, false)
}
}