diff --git a/README.md b/README.md index a497f17df..dd42ad888 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ ## Latest releases 🛠 -- Kotlin 2.x && Multiplatform && Compose && Plugin | [v11.2.0](https://github.com/mikepenz/AboutLibraries/tree/v11.2.0) +- Kotlin 2.x && Multiplatform && Compose && Plugin | [v11.2.1](https://github.com/mikepenz/AboutLibraries/tree/v11.2.1) ## Gradle Plugin diff --git a/gradle.properties b/gradle.properties index 1cbb1d192..abb22f5f9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ GROUP=com.mikepenz -VERSION_NAME=11.2.0 -VERSION_CODE=110200 +VERSION_NAME=11.2.1 +VERSION_CODE=110201 POM_URL=https://github.com/mikepenz/AboutLibraries POM_SCM_URL=https://github.com/mikepenz/AboutLibraries POM_SCM_CONNECTION=scm:git@github.com:mikepenz/AboutLibraries.git diff --git a/plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin/util/DependencyCollector.kt b/plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin/util/DependencyCollector.kt index d3e696b65..d0c985609 100644 --- a/plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin/util/DependencyCollector.kt +++ b/plugin-build/plugin/src/main/kotlin/com/mikepenz/aboutlibraries/plugin/util/DependencyCollector.kt @@ -130,10 +130,13 @@ class DependencyCollector( } } } catch (e: Throwable) { - if (LOGGER.isDebugEnabled) { - LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency - ${e.message}") - } else { - LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency", e) + when { + LOGGER.isDebugEnabled -> { + LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency", e) + } + LOGGER.isInfoEnabled -> { + LOGGER.warn("Found possibly ambiguous variant - $resolvedDependency") + } } } }