maven - Use __groupId__ in archetype -


i'm trying create multi module archetype following:

__groupid__.plugin __groupid__.feature 

i want set names of modules groupid. use __groupid__ in order set module names. problem these template doesn't recognized. when use __rootartifactid__ code works. using wrong template name?

i have following structure:

archetype  |--src     |--main         |--resources             |--sonatype-resources             |   |--__groupid__.plugin             |   |--__groupid__.feature             |   |--pom.xml             |---meta-inf                 |---maven                     |---archetype-metadata.xml 

the module description in archetype-metadata.xml looks this:

<module id="${groupid}.plugin" dir="__groupid__.parent" name="${groupid}.plugin">   <filesets>     <fileset filtered="true" encoding="utf-8">       <directory></directory>       <includes>         <include>.project</include>         <include>build.properties</include>       </includes>     </fileset>   </filesets> </module> <module id="${groupid}.parent" dir="__groupid__.feature" name="${groupid}.feature">   <filesets>     <fileset filtered="true" encoding="utf-8">       <directory></directory>       <includes>         <include>.project</include>         <include>build.properties</include>       </includes>     </fileset>   </filesets> </module> 

you can think of using "packaged" property of fileset. using can alter "package" property default value , adding files directly in customized folder.


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -