Author: tchemit Date: 2008-10-17 17:04:05 +0000 (Fri, 17 Oct 2008) New Revision: 952 Modified: lutinjaxx/trunk/pom.xml Log: can disable examples building with -Ddoexample=false, by default will build them (but not required on dev process :) ) if no example a mvn clean install = 37s, otherwise = 2 min... Modified: lutinjaxx/trunk/pom.xml =================================================================== --- lutinjaxx/trunk/pom.xml 2008-10-17 17:02:38 UTC (rev 951) +++ lutinjaxx/trunk/pom.xml 2008-10-17 17:04:05 UTC (rev 952) @@ -202,8 +202,14 @@ </scm> <profiles> + <!-- by default example are included, use -Ddoexample=false to disable examples --> <profile> - <id>example</id> + <activation> + <property> + <name>doexample</name> + <value>!false</value> + </property> + </activation> <modules> <module>jaxx-example</module> </modules>
participants (1)
-
tchemit@users.labs.libre-entreprise.org