Creating Maven ArcheType . Setting file name

There is a bug in maven archetype. See bug reports ARCHETYPE-406 and ARCHETYPE-397.

When fixed it will be possible to define and use custom requiredProperty for your case.

In archetype-metadata.xml add

<requiredProperties>
  <requiredProperty key="classPrefix" >
    <defaultValue>
      ${artifactId.substring(0,1).toUpperCase()}${artifactId.substring(1)}
    </defaultValue>
  </requiredProperty>
</requiredProperties>

Don't forget to add classPrefix to archetype.properties


I looked through the code that creates the replacement in the filenames of the archetype resources (which can be found here). It seems that the values of the arguments are taken from the context, which means that they are not evaluated. In my opinion, for the moment it is not possible (sad, but true) to use the evaluation mechanism directly in the file names.

However, by simply implementing the FilesetArchetypeGenerator interface, a good contribution can be made to the archetypes generation.