How can I specify an alternate name for the output artfact (e.g.
someModule-jvm.jar
) in my Kotlin Multiplatform project?
Asking because I restructured my project to have submodules for Clean architecture layers, so now I have multiple JARs named e.g.
domain-
,
presentation-
,
service-
b
Big Chungus
07/05/2021, 6:56 AM
Either tweak names in jar task or rename modules in settings.kts via
project(":path").name = "xxx"
đ 1
d
darkmoon_uk
07/05/2021, 6:59 AM
Thanks, I ended up defining a small function within