I was planning on getting <https://github.com/mock...
# mockk
m
I was planning on getting https://github.com/mockk/mockk/pull/1039 merged before releasing, but I think it can be moved to the next release I’ll probably get a release done between today and tomorrow
thank you color 1
s
This user does not seem to be very active 😬 Can we help in any way? If it's only a matter of resolving conflicts (which should not be that many base on the diff size) I could update/reupload this PR.
m
well thing is, I was planning on making a release anyway without merging that PR, but…https://kotlinlang.slack.com/archives/C2R77UD35/p1695140810235549
s
Oh I see. Then maybe I can help with that instead :)
m
if you can, i’d be very happy 🙂
s
A simple workaround is to add the explicit tasks dependency
Copy code
tasks.named("dokkaJavadoc") {
    mustRunAfter(tasks.named("kaptDebugKotlin"))
    mustRunAfter(tasks.named("kaptReleaseKotlin"))
}
After that, the publish task works again. But the "better/long-term" solution would be to use the Android
LibraryPublishing
API instead. WDYT?
I'll prepare a PR if that's OK
m
yep that works, I tried on my machine and I was able to publish to sonatype, you should be able to use 1.13.8 in a short while
I’d definitely like to use the Android LibraryPublishing API, but I have no idea how to do it of course I’ll never complain if you want to send a PR about it 😅
s
We use it in this project but it would be a lot of work to migrate this codebase blob sweat smile