The library uses two dependencies which are part of the API and need to be used by the library user as well. But even though we mark them as api instead of implementation, they are mapped to runtime scope in resulting pom.xml instead of compile scope.
I tested that using java-library plugin fixes this, but that's not compatible with KMP.
Not sure if this is a bug of maven-deployer plugin, I created an issue there.
As a workaround, add these dependencies into your project manually:
implementation 'com.ionspin.kotlin:bignum:0.3.10'
implementation 'org.jetbrains.kotlinx:kotlinx-datetime:0.6.1'
The library uses two dependencies which are part of the API and need to be used by the library user as well. But even though we mark them as
apiinstead ofimplementation, they are mapped toruntimescope in resultingpom.xmlinstead ofcompilescope.I tested that using
java-libraryplugin fixes this, but that's not compatible with KMP.Not sure if this is a bug of
maven-deployerplugin, I created an issue there.As a workaround, add these dependencies into your project manually: