support for multi-module projects modules are part of profiles
--------------------------------------------------------------

                 Key: ARCHETYPE-384
                 URL: https://jira.codehaus.org/browse/ARCHETYPE-384
             Project: Maven Archetype
          Issue Type: New Feature
          Components: Creator
    Affects Versions: 2.1
         Environment: Windows
            Reporter: tanmoy banerjee


My project structure is shown as below:

{code:xml}
<project>
  <modules>
    <module>sample-domain</module>
    <module>sample-data</module>
  </modules>

  <profiles>
    <profile><id>it</id>
      <modules>
        <module>sample-it</modules>
      </modules>
    </profile>
  <profiles>
</project>
{code}

the idea is to have the module sample-it only when it is built with  When this 
is the scenario, and i run the command create-from-project, the 
archetype-metadata.xml does not include the sample-it module, nor it filters 
the files in that module. 

archetype-metadata.xml

{code:xml}
<archetype-descriptor>
<modules>
<module id="${rootArtifactId}-domain" dir="__rootArtifactId__-domain" 
name="${rootArtifactId}-domain"></module>
<module id="${rootArtifactId}-data" dir="__rootArtifactId__-data" 
name="${rootArtifactId}-data"></module>
</modules>
</archetype-descriptor>
{code}

The sample-it module is not inluded in this, and it satys in the pom as is... 
and none of the files in the module is filtered. Is this my configuration 
issue, and what is the configuration to do this. Otherwise, it will be a great 
feature to have this feature.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to