Shan
11/24/2020, 9:47 PMroot
|___core
|__src
|__commonMain
|__jvmMain //etc
|__build.gradle.kts
|___otherModule
|__src
|__commonMain
|__jvmMain //ec
|__ build.gradle.kts
|__settings.gradle.kts //root project name set here
|__gradle.properties
It's defaulting to core-jvm / core-metadata etc. right now for the artifact ID, but i'd like all of the generated artifact IDs to be foo-jvm / foo-metadata etc. I have been setting them all individually but feel like there might be a better way to just set that parameter once somewhere in the build script.adk
11/25/2020, 8:26 AMname="foo" at the top level of your build.gradle.kts not do the trick?Benjamin Charais
11/26/2020, 3:44 PMrootProject.name = "foo"
Though, I am not convinced that will work due to the modules you have set up, so looking at the publish you should be able to modify the group and artifact name following this link: https://docs.gradle.org/current/userguide/publishing_maven.html#sec:identity_values_in_the_generated_pom