Using the Kotlin JVM plugin I can iterate over all...
# compose-desktop
s
Using the Kotlin JVM plugin I can iterate over all the jar dependencies by doing something like this:
Copy code
sourceSets.getByName("main").runtimeClasspath.filter { it.path.endsWith(".jar") }
How would I get the same data in the Multiplatform Plugin for the JVM source set? I'm trying to get a list of all jars so that I can run them through an obfuscator. Everyone else I've seen attempt this seems to be using the jvm plugin, not multiplatform