I need to create a random UUID and write it to the generated project. Currently, I ask the user to fill in a random UUID each time a project is created, and I would like this to be done automatically.
Right now, I have in my archetype-metadata.xml the following required property:
<requiredProperty key="randomUuid">
<defaultValue>12345678-1234-1234-1234-12345678abcd</defaultValue>
</requiredProperty>
Then I refer to ${randomUuid} inside my archetype resources to write this UUID into the generated project.
Any better approach ?
Thanks!