Closed
Description
I just tried to install v2.2.3 by updating the Gradle plugin:
plugins {
id "org.springframework.boot" version "2.2.3.RELEASE" // was 2.2.2.RELEASE
}
However, when I try to build, I get the following dependency resolution error:
> Could not resolve all files for configuration ':example:detachedConfiguration17'.
> Could not resolve org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.3.
Required by:
project :example
> Cannot choose between the following variants of org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.3:
- enforcedRuntimeElements
- runtimeElements
All of them match the consumer attributes:
- Variant 'enforcedRuntimeElements' capability org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.3:
- Unmatched attributes:
- Found org.gradle.category 'enforced-platform' but wasn't required.
- Found org.gradle.status 'release' but wasn't required.
- Found org.gradle.usage 'java-runtime' but wasn't required.
- Variant 'runtimeElements' capability org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.3:
- Unmatched attributes:
- Found org.gradle.category 'platform' but wasn't required.
- Found org.gradle.status 'release' but wasn't required.
- Found org.gradle.usage 'java-runtime' but wasn't required.
This is with a pure-Java project (not using Kotlin).