This message was deleted.
# community-support
s
This message was deleted.
v
Sounds more like you want to use the distribution plugin or maybe even the application plugin.
👀 1
🙌 1
r
will take a look, thanks 🙂
I think application plugin might be a bad choice for kotlin multiplatform/native, since native already have the part of executability and it is inherently not a pure Java project (not sure if the kotlin multiplatform plugin even utilize the java plugin unless I distribute to JVM) currently I don't want a zip, but I will keep the distribution plugin in mind, because it is a likely next step. Right now though, it would just become a zipping-step to immediately unzip it, so I'd rather copy to the output folder and then deal with how to distribute later 🙂
v
The distribution plugin also has
installDist
which assembles the files in a directory without building a zip. But yeah you can of course also just register a
Sync
task if that is all you need and want.
r
ah awesome, thank you so much 🙏
👌 1
e
none of this is really compatible with the Kotlin Multiplatform plugin, unfortunately
r
thanks, and yes I found out. Distribution is probably the most correct kind of solution, but as commented above, it's not compatible