Hi,

I have a pom with a parent pom.  Both poms have profiles, some of which are 
active and some of which are not.  The parent pom has a profile that is 
activated by the existence of a file, as below.  However, when I run mvn 
help:active-profiles on the _child_ pom I do not get this profile to show up - 
despite the profile being inevitably executed when mvn clean install is run.  
The same thing happens, I think, with property–based profiles.

<project>
<profiles>
<profile>
<id>test</id>
<activation>
    <file>
        <exists>marker</exists>
    </file>
</activation>

Is this a limitation of the plugin or am I using it incorrectly?

Thank you,
Daniel Winsor
Associate, IT Architecture

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to