in src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformExtension.kt [1194:1211]
fun recommended() {
val configurationsProvider = ProductReleasesValueSource().map { notations ->
notations.map { notation ->
val (type, version) = notation.parseIdeNotation()
createConfiguration {
this.type = type
this.version = version
}
}
}
dependenciesHelper.addIntelliJPlatformCacheableDependencies(
configurationsProvider = configurationsProvider,
dependencyConfigurationName = Configurations.INTELLIJ_PLUGIN_VERIFIER_IDES,
dependencyArchivesConfigurationName = Configurations.INTELLIJ_PLUGIN_VERIFIER_IDES_DEPENDENCY,
localArchivesConfigurationName = Configurations.INTELLIJ_PLUGIN_VERIFIER_IDES_LOCAL_INSTANCE,
)
}