[Lutinutil-commits] r1020 - in trunk: lutini18neditor maven-i18n-plugin
Author: tchemit Date: 2008-08-14 17:43:59 +0000 (Thu, 14 Aug 2008) New Revision: 1020 Modified: trunk/lutini18neditor/pom.xml trunk/maven-i18n-plugin/pom.xml Log: utilisation org.codelutin:lutinproject:2.4 Modified: trunk/lutini18neditor/pom.xml =================================================================== --- trunk/lutini18neditor/pom.xml 2008-08-13 10:54:48 UTC (rev 1019) +++ trunk/lutini18neditor/pom.xml 2008-08-14 17:43:59 UTC (rev 1020) @@ -6,95 +6,91 @@ <!--The version of maven's project object model--> <modelVersion>4.0.0</modelVersion> - <!--lutinproject.xml--> + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> <parent> - <groupId>lutinlib</groupId> + <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>2.3</version> + <version>2.4</version> </parent> - <!--A unique name for this project--> <groupId>lutinlib</groupId> <artifactId>lutini18neditor</artifactId> - <name>Lutin I18n Editor</name> - <!--ejb, jar, war...--> - <packaging>jar</packaging> + <dependencies> - <!--Version--> - <version>0.3-SNAPSHOT</version> + <!--Librairies CodeLutin--> + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>lutinutil</artifactId> + <version>0.30-SNAPSHOT</version> + <scope>compile</scope> + </dependency> - <!--Description--> + <!--Jaxx--> + <dependency> + <groupId>org.codelutin.jaxx</groupId> + <artifactId>jaxx-swing</artifactId> + <scope>compile</scope> + <version>0.4</version> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>Lutin I18n Editor</name> + <version>0.3-SNAPSHOT</version> <description>Editeur de fichier i18n</description> <inceptionYear>2008</inceptionYear> - <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=12</url> - </issueManagement> + <!-- BE WARE, this value must rewritten here since it will be otherwise suffixed by inheritance --> + <url>${labs.project.url}</url> - <distributionManagement> - <site> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> - </site> - </distributionManagement> + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + <packaging>jar</packaging> + <properties> + + <!-- id du projet du labs --> + <labs.id>12</labs.id> + + <!-- nom du projet sur le labs --> + <labs.project>lutinutil</labs.project> + + <!-- BE WARE, this value must rewritten here since it will be otherwise suffixed by inheritance --> + <maven.scm.url>https://${labs.host}/plugins/scmsvn/viewcvs.php/trunk/${pom.artifactId}?root=${labs.project} + </maven.scm.url> + + </properties> + <build> <plugins> <plugin> <groupId>org.codelutin.jaxx</groupId> <artifactId>maven-jaxx-plugin</artifactId> - <version>0.3</version> - <!--configuration> - <src>${basedir}/src/main/uimodel</src> - <out>${basedir}/target/gen/java</out> - </configuration--> + <version>0.4</version> <executions> <execution> - <phase>process-sources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> - <dependencies> - <dependency> - <groupId>org.codelutin.jaxx</groupId> - <artifactId>jaxx-swing</artifactId> - <scope>compile</scope> - <version>0.3</version> - </dependency> - </dependencies> </plugin> + <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${maven.compile.source}</source> - <target>${maven.compile.target}</target> - <encoding>${maven.compile.encoding}</encoding> - </configuration> - </plugin> - <plugin> <groupId>lutinplugin</groupId> <artifactId>maven-i18n-plugin</artifactId> - <version>0.4</version> - <configuration> - <bundles> - <param>fr_FR</param> - <param>en_GB</param> - </bundles> - <src>${maven.src.dir}/main/resources/i18n</src> - <defaultBasedir>${maven.src.dir}/main/java</defaultBasedir> - <keysModifier>false</keysModifier> - <keepBackup>false</keepBackup> - </configuration> <executions> <execution> - <phase>generate-resources</phase> <goals> - <!--goal>parserJaxx</goal--> <goal>parserJava</goal> <goal>gen</goal> </goals> @@ -109,86 +105,15 @@ </executions> </plugin> - <!-- source--> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - <!-- javadoc --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> </build> + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> - <!--Librairies--> - <dependencies> + <scm> + <url>${maven.scm.url}</url> + </scm> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>compile</scope> - </dependency> - - <!--Librairies CodeLutin--> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinutil</artifactId> - <version>0.30-SNAPSHOT</version> - <scope>compile</scope> - </dependency> - - <!--Jaxx--> - <dependency> - <groupId>org.codelutin.jaxx</groupId> - <artifactId>jaxx-swing</artifactId> - <scope>compile</scope> - <version>0.3</version> - </dependency> - - </dependencies> - - <profiles> - <profile> - <id>project</id> - - <activation> - <activeByDefault>true</activeByDefault> - </activation> - - <properties> - <!--Test--> - <maven.test.skip>true</maven.test.skip> - - <!--Source base dir--> - <maven.gen.dir>${basedir}/target/generated-sources</maven.gen.dir> - - <!--Compile with ?--> - <maven.compile.source>1.6</maven.compile.source> - <maven.compile.target>1.6</maven.compile.target> - <maven.compile.encoding>UTF-8</maven.compile.encoding> - - </properties> - </profile> - </profiles> </project> Modified: trunk/maven-i18n-plugin/pom.xml =================================================================== --- trunk/maven-i18n-plugin/pom.xml 2008-08-13 10:54:48 UTC (rev 1019) +++ trunk/maven-i18n-plugin/pom.xml 2008-08-14 17:43:59 UTC (rev 1020) @@ -66,7 +66,7 @@ <inceptionYear>2007</inceptionYear> <!-- BE WARE, this value must rewritten here since it will be otherwise suffixed by inheritance --> - <url>http://${labs.host}/projects/${labs.project}</url> + <url>${labs.project.url}</url> <!-- ************************************************************* --> <!-- *** Build Settings ****************************************** --> @@ -105,6 +105,10 @@ </properties> + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + <scm> <url>${maven.scm.url}</url> </scm> @@ -118,5 +122,5 @@ </plugin> </plugins> </reporting> - + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org