i am trying to use the profiles in my parent pom like this
<profile>
<id>dev</id>
<activation>
<property>
<name>env</name>
<value>dev</value>
</property>
</activation>
<modules>
<module>client</module>
</modules>
</profile>
I want only the client module which is a child module in my project to build
and install when i call like this
> mvn -Denv=dev clean install
I do it and nothing happens how can this be done?
Any help is appreciated
--
View this message in context:
http://old.nabble.com/using-activation-property-in-profiles--tp26163656p26163656.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]