r261 - maven-jrst-plugin/trunk
Author: tchemit Date: 2009-02-10 13:40:34 +0000 (Tue, 10 Feb 2009) New Revision: 261 Modified: maven-jrst-plugin/trunk/changelog.txt maven-jrst-plugin/trunk/pom.xml Log: utilisation de lutinproject 3.4 plutot que lutinpluginproject Modified: maven-jrst-plugin/trunk/changelog.txt =================================================================== --- maven-jrst-plugin/trunk/changelog.txt 2009-02-05 22:01:26 UTC (rev 260) +++ maven-jrst-plugin/trunk/changelog.txt 2009-02-10 13:40:34 UTC (rev 261) @@ -1,5 +1,5 @@ ver-0-8-4 chatellier 200902xx - * 20090205 [chemit] use lutinpluginproject-3.4 + * 20090210 [chemit] use lutinproject-3.4 * 20090205 Set default locale to 'en' * 20090205 Remove some required setting for parameter with default values * 20090205 Write javadoc in english Modified: maven-jrst-plugin/trunk/pom.xml =================================================================== --- maven-jrst-plugin/trunk/pom.xml 2009-02-05 22:01:26 UTC (rev 260) +++ maven-jrst-plugin/trunk/pom.xml 2009-02-10 13:40:34 UTC (rev 261) @@ -24,9 +24,24 @@ <dependency> <groupId>org.codelutin</groupId> <artifactId>lutinpluginutil</artifactId> - <version>0.2</version> + <version>0.3-SNAPSHOT</version> <scope>compile</scope> </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + </dependencies> <!-- ************************************************************* --> @@ -55,6 +70,8 @@ <maven.site.locales>fr,en</maven.site.locales> <jrst.version>0.8.4-SNAPSHOT</jrst.version> + + <maven.version>2.0.9</maven.version> </properties> <build> @@ -63,6 +80,19 @@ <plugins> + <!-- plugin plugin --> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> + <executions> + <execution> + <goals> + <goal>helpmojo</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- Always process jrst files, but only called on pre-site phase --> <plugin> <groupId>org.codelutin</groupId> @@ -89,6 +119,16 @@ </build> + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> @@ -98,6 +138,23 @@ <url>${maven.scm.url}</url> </scm> + <!--Code Lutin Repository--> + <repositories> + <repository> + <id>codelutin-repository</id> + <name>CodeLutinRepository</name> + <url>${labs.builder.url}</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + </repositories> + <!-- Maven Environment : profiles --> <profiles> <profile>
participants (1)
-
tchemit@users.labs.libre-entreprise.org