Print compose core version while resolving plugin dependencies in web

This commit is contained in:
Shagen Ogandzhanian
2021-05-25 18:10:29 +02:00
parent 1f43be9c91
commit 31a63f3796

View File

@@ -13,6 +13,7 @@ pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "org.jetbrains.compose") {
println("[build] compose core version: ${extra["COMPOSE_CORE_VERSION"]}")
useModule("org.jetbrains.compose:org.jetbrains.compose.gradle.plugin:${extra["COMPOSE_CORE_VERSION"]}")
}
}