Author: tchemit Date: 2008-08-18 22:15:19 +0000 (Mon, 18 Aug 2008) New Revision: 124 Modified: trunk/lutinproject/pom.xml Log: integration du goal license-switcher:switch dans le cycle de build. Il faut activer le profile license pour lancer ce goal (-Plicense) ou ajouter la variable maven license-switcher.doSwitch (-Dlicense-switcher.doSwitch=true). Ceci est fait car le goal doit etre dans lecycle du buildpour pouvoir traiter aussi les sources generes. Modified: trunk/lutinproject/pom.xml =================================================================== --- trunk/lutinproject/pom.xml 2008-08-18 20:10:32 UTC (rev 123) +++ trunk/lutinproject/pom.xml 2008-08-18 22:15:19 UTC (rev 124) @@ -361,6 +361,7 @@ <goals> <goal>license</goal> <goal>third-party</goal> + <goal>switch</goal> </goals> </execution> </executions> @@ -805,6 +806,15 @@ <maven.reports.generate>true</maven.reports.generate> </properties> </profile> + <profile> + <id>license</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <properties> + <license-switcher.doSwitch>true</license-switcher.doSwitch> + </properties> + </profile> </profiles> </project>