[
https://issues.apache.org/jira/browse/ARCHETYPE-571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16913216#comment-16913216
]
Tibor Digana commented on ARCHETYPE-571:
----------------------------------------
[~sdalvi]
Pls participate in this Vote.
Join us on the mailing list and vote for this release
https://lists.apache.org/thread.html/76d1d68aa35ed05b8c553e1451a1fb555a1fd2e00ed102f22785087a@%3Cdev.maven.apache.org%3E
> Unable to generate project which has pom with multiple profiles with modules
> section
> ------------------------------------------------------------------------------------
>
> Key: ARCHETYPE-571
> URL: https://issues.apache.org/jira/browse/ARCHETYPE-571
> Project: Maven Archetype
> Issue Type: Bug
> Components: Archetypes, Plugin
> Affects Versions: 3.1.1
> Reporter: Sneha Dalvi
> Assignee: Tibor Digana
> Priority: Minor
> Fix For: 3.1.2
>
>
> The archetype plugin does not allow multiple </modules> sections in project's
> pom, even if each </modules> section is in different <profile> section.
>
> I get this error
> {code:java}
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-archetype-plugin:3.1.1:generate (default-cli)
> on project standalone-pom: Illegal to use multiple <modules/> sections.{code}
> when I try to generate a project which has multiple profiles with modules
> sections in pom as follows. Having multiple profiles helps to build specific
> modules in specific profiles.
> {code:xml}
> <profiles>
> <profile>
> <id>profile1</id>
> <modules>
> <module>module1</module>
> </modules>
> </profile>
> <profile>
> <id>profile2</id>
> <modules>
> <module>module2</module>
> </modules>
> </profile>
> </profiles>
> {code}
>
> [~tibordigana] Looks like PomUtils.java does not consider possibility of
> multiple profiles while checking for multiple </modules> sections.
>
> [https://github.com/apache/maven-archetype/blob/6ee16590590c722b6e7112edb470cf275106f53f/archetype-common/src/main/java/org/apache/maven/archetype/common/util/PomUtils.java]
>
> Please review. Thanks!
--
This message was sent by Atlassian Jira
(v8.3.2#803003)