What is it that every second Kotlin release breaks...
# gradle
m
What is it that every second Kotlin release breaks publishing for me? šŸ˜ž I can build a multiplatform project just fine with
build
. But when I
publish
I get ā€œUnresolved referencesā€ for subproject dependencies. Anyone else having that and knows a workaround?
Looks like publishing is not or no longer compatible with
org.gradle.parallel=true
šŸ™„
d
*if you are using
mavenLocal
in your build file
m
Thanks. I’ve uncommented
mavenLocal()
in my project. Same issue though šŸ˜• Also, the problematic dependency is part of the same project to be published. It’s just another subproject.
d
it might be still the same issue -> Gradle might not be able to resolve module metadata for multiplatform module that was just published to maven local
m
It tries to resolve artifacts it has just created? That would be odd 😮
d
indeed, no idea though
j
@Marc Knaup do you have a jvm only module and a Multiplatform module with android?
m
no android there are some jvm only modules involved though