Someone knows how to locally add a multiplatform p...
# announcements
l
Someone knows how to locally add a multiplatform project as a dependecy for a JVM project? I've posted my usecase here: https://discuss.kotlinlang.org/t/how-do-you-import-a-module-of-a-local-multiplatform-library-using-gradle/11752
d
What do you mean by
local
?
If it's on your computer, you can
gradlew mavenInstall
if you add the maven plugin, and then you can add the repository
mavenLocal()
to your project.
Then you can use
implementation("group:artifact-jvm:version")
in your dependencies as normal