[Lutinbuilder-commits] r295 - lutinproject/trunk
Author: tchemit Date: 2009-01-22 21:06:10 +0000 (Thu, 22 Jan 2009) New Revision: 295 Modified: lutinproject/trunk/pom.xml Log: ajout d'une variable maven.javadoc.skip mais qu'on ne pourra utiliser qu'?\195?\160 partir de javadoc 2.5 Modified: lutinproject/trunk/pom.xml =================================================================== --- lutinproject/trunk/pom.xml 2009-01-14 11:02:54 UTC (rev 294) +++ lutinproject/trunk/pom.xml 2009-01-22 21:06:10 UTC (rev 295) @@ -250,6 +250,9 @@ <!-- default license to use --> <license-switcher.licenseName>lgpl_v3</license-switcher.licenseName> + <!-- pour ne pas generer la javadoc (quand on aura un javadoc 2.5 --> + <maven.javadoc.skip>false</maven.javadoc.skip> + <!-- single pom or multi-module pom scm properties --> <maven.scm.url> http://${labs.host}/plugins/scmsvn/viewcvs.php/${project.artifactId}/trunk/?root=${labs.project} @@ -574,6 +577,7 @@ <configuration> <docencoding>${maven.compile.encoding}</docencoding> <encoding>${maven.compile.encoding}</encoding> + <charset>${maven.compile.encoding}</charset> <quiet>true</quiet> </configuration> <executions> @@ -586,6 +590,8 @@ <configuration> <attach>true</attach> <quiet>true</quiet> + <!-- uniquement a partir de javadoc 2.5 --> + <!--skip>${maven.javadoc.skip}</skip--> </configuration> </execution> </executions> @@ -996,6 +1002,28 @@ </build> </profile> <profile> + <id>not-release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>false</value> + </property> + </activation> + <build> + <plugins> + <!-- always compute source jar --> + <plugin> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-sources</id> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> <!-- profile to fix site url only for the pom --> <!-- big hack : test the existance of a rst file to know if we are reaaly in the plugin ? --> <activation>
participants (1)
-
tchemit@users.labs.libre-entreprise.org