rpalcolea
09/20/2018, 8:04 PMRequired by:
project :example-v8
> Unable to find a matching variant of project :karibu-dsl-v8:
- Variant 'apiElements':
- Found org.gradle.usage 'java-api' but wasn't required.
- Required org.jetbrains.kotlin.platform.type 'common' and found incompatible value 'jvm'.
- Variant 'runtimeElements':
- Found org.gradle.usage 'java-runtime-jars' but wasn't required.
- Required org.jetbrains.kotlin.platform.type 'common' and found incompatible value 'jvm'.
when using kotlin 1.2.70 and gradlegildor
09/21/2018, 2:07 AMh0tk3y
09/21/2018, 9:25 AMorg.jetbrains.kotlin.platform.type
attribute is meant for Kotlin multiplatform projects, as are the configurations where it is set to common
, the <...>DependenciesMetadata
ones. You can try to mark those as canBeResolved = false
. This is a bug that we are going to fix soon. It happens in 1.3-RC, too, but the final 1.3 update and the 1.2.72 patch will include the fix.Fleshgrinder
09/24/2018, 6:47 PM