Unrelated question: I am puzzled by libraries like...
# announcements
s
Unrelated question: I am puzzled by libraries like Kotlin Mockito who begin to release version specific artifacts like
com.nhaarman:mockito-kotlin-kt1.1:x.x.x
only to avoid mixing Kotlin 1.0 reflect and stdlib dependencies with Kotlin 1.1 projects. See discussion on https://github.com/nhaarman/mockito-kotlin/pull/178#issuecomment-307242385. Is there a better solution than using Gralde scope like
compileOnly
to avoid exporting Kotlin 1.0 dependencies in the published POM (not ideal since no dependency on
kotlin-reflect
is not enforced)?