Hi, in a multiplatform library that uses a local j...
# gradle
a
Hi, in a multiplatform library that uses a local jar artifact for the JVM target, where would I put that artifact. In a regular JVM project, I just had a top-level "lib" folder, which I added with the following directive via the `build.gradle.kts`:
repositories {
flatDir {
dirs("lib")
}
}
But his does not seem to work in the multiplatform project, the jar is not recognized in the project. I have also tried putting this snippet in the sourceSets / jvmMain section and using the
resources
folder for this.