Skip to content

Commit

Permalink
Merge pull request #993 from mikepenz/develop
Browse files Browse the repository at this point in the history
dev -> main
  • Loading branch information
mikepenz authored May 30, 2024
2 parents 05bb519 + 2e3e6d8 commit d829008
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
}
Expand Down

0 comments on commit d829008

Please sign in to comment.