Hello, I'm having a hard time upgrading my project to kotlin 1.3.41 from 1.2.31. I have a multiplatform library that contains all my project's models, and several other modules that depend on it. I'm trying to add the library as a dependency to my other modules. Currently i'm adding two lines like:
implementation project (":models-library")
implementation "my.groupmodels library jvm$version"
However I'm running into two problems: 1 - transitive dependencies aren't being resolved; models-library depends on several libraries and I get a bunch of "unresolved reference" errors when compiling other modules; 2 - Currently I have to manually run "publishToMavenLocal".
Could anyone help me?