Is there an 'Amper' equivalent to setting `rootPro...
# amper
d
Is there an 'Amper' equivalent to setting
rootProject.name
in
settings.gradle.kts
, for the purpose of controlling published artifact names? Without setting this, a published artifact always takes on the name of the folder in which the project is checked out; and though this is historical, I find it to be a very fragile method. Published artifact names should be an explicit part of configuration code. Currently, I am just doing
rootProject.name="myProjectName"
in settings, which is Amper-compatible, but going forward, first-class Amper support would be preferred.
j
We don't have a way to customize this yet from Amper files. This can be customized in
settings.gradle.kts
as you mentioned. We'll consider your feedback for direct support in Amper, though. Thanks!