[Lutinutil-commits] r1336 - maven-i18n-plugin/trunk
Author: tchemit Date: 2009-02-10 13:15:45 +0000 (Tue, 10 Feb 2009) New Revision: 1336 Modified: maven-i18n-plugin/trunk/pom.xml Log: utilisation de lutinproject 3.4 plutot que lutinpluginproject Modified: maven-i18n-plugin/trunk/pom.xml =================================================================== --- maven-i18n-plugin/trunk/pom.xml 2009-02-10 13:15:00 UTC (rev 1335) +++ maven-i18n-plugin/trunk/pom.xml 2009-02-10 13:15:45 UTC (rev 1336) @@ -9,7 +9,7 @@ <!-- ************************************************************* --> <parent> <groupId>org.codelutin</groupId> - <artifactId>lutinpluginproject</artifactId> + <artifactId>lutinproject</artifactId> <version>3.4-SNAPSHOT</version> </parent> @@ -49,10 +49,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> <!-- ************************************************************* --> @@ -71,9 +85,33 @@ <packaging>maven-plugin</packaging> + <properties> + + <!-- id du projet du labs --> + <labs.id>12</labs.id> + + <!-- nom du projet sur le labs --> + <labs.project>lutinutil</labs.project> + + <i18n.version>${project.version}</i18n.version> + <maven.version>2.0.9</maven.version> + </properties> + <build> <defaultGoal>install</defaultGoal> + <!-- plugin plugin --> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> + <executions> + <execution> + <goals> + <goal>helpmojo</goal> + </goals> + </execution> + </executions> + </plugin> <plugins> <!-- Always process jrst files, but only called on pre-site phase --> <plugin> @@ -99,22 +137,16 @@ </plugins> </build> - <properties> + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> - <!-- id du projet du labs --> - <labs.id>12</labs.id> - - <!-- nom du projet sur le labs --> - <labs.project>lutinutil</labs.project> - - <!-- lorsque l'on veut deplopyer une nouvelle version, on execute - un release:prepare, - on checkout le tag et on install localement - un release:perform - --> - <i18n.version>${project.version}</i18n.version> - </properties> - <!-- ************************************************************* --> <!-- *** Build Environment ************************************** --> <!-- ************************************************************* --> @@ -126,6 +158,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> + <profiles> <!-- perform only on a release stage when using the maven-release-plugin --> <profile>
participants (1)
-
tchemit@users.labs.libre-entreprise.org