Author: tchemit Date: 2008-07-08 12:23:16 +0000 (Tue, 08 Jul 2008) New Revision: 815 Modified: trunk/lutinutil/pom.xml Log: my mistake :) passage en lutinutil-0.29 + ajout plugin de generation javadoc Modified: trunk/lutinutil/pom.xml =================================================================== --- trunk/lutinutil/pom.xml 2008-07-08 12:13:43 UTC (rev 814) +++ trunk/lutinutil/pom.xml 2008-07-08 12:23:16 UTC (rev 815) @@ -1,61 +1,61 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - <!--The version of maven's project object model--> - <modelVersion>4.0.0</modelVersion> - - <!--lutinproject.xml--> - <parent> - <groupId>lutinlib</groupId> - <artifactId>lutinproject</artifactId> - <version>2.2</version> - </parent> - - <!--A unique name for this project--> - <artifactId>lutinutil</artifactId> - <name>Lutin utilities library</name> - - <!--ejb, jar, war...--> - <packaging>jar</packaging> - - <!--Version--> - <version>0.29</version> - - <!--Description--> - <description> - Librairie de classe Java utile a tout projet. - </description> - <inceptionYear>2004</inceptionYear> - - <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=12</url> - </issueManagement> - - <build> - <plugins> - <plugin> - <groupId>lutinplugin</groupId> - <artifactId>maven-i18n-plugin</artifactId> + <!--The version of maven's project object model--> + <modelVersion>4.0.0</modelVersion> + + <!--lutinproject.xml--> + <parent> + <groupId>lutinlib</groupId> + <artifactId>lutinproject</artifactId> + <version>2.2</version> + </parent> + + <!--A unique name for this project--> + <artifactId>lutinutil</artifactId> + <name>Lutin utilities library</name> + + <!--ejb, jar, war...--> + <packaging>jar</packaging> + + <!--Version--> + <version>0.29</version> + + <!--Description--> + <description> + Librairie de classe Java utile a tout projet. + </description> + <inceptionYear>2004</inceptionYear> + + <!--Tracking--> + <issueManagement> + <url>http://labs.libre-entreprise.org/tracker/?group_id=12</url> + </issueManagement> + + <build> + <plugins> + <plugin> + <groupId>lutinplugin</groupId> + <artifactId>maven-i18n-plugin</artifactId> <version>0.2-SNAPSHOT</version> <configuration> - <bundles> - <param>fr_FR</param> - <param>en_GB</param> - </bundles> + <bundles> + <param>fr_FR</param> + <param>en_GB</param> + </bundles> <keysModifier>false</keysModifier> </configuration> - <executions> - <execution> - <phase>process-classes</phase> - <goals> - <goal>parserJava</goal> - <goal>gen</goal> - </goals> - </execution> - </executions> - </plugin> + <executions> + <execution> + <phase>process-classes</phase> + <goals> + <goal>parserJava</goal> + <goal>gen</goal> + </goals> + </execution> + </executions> + </plugin> <!-- source --> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -68,17 +68,33 @@ </execution> </executions> </plugin> + <!-- javadoc --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + <!--configuration> + <aggregate>true</aggregate> + <encoding>${maven.compile.encoding}</encoding> + </configuration--> + </plugin> </plugins> - </build> + </build> - <!--Librairies--> - <dependencies> - <dependency> + <!--Librairies--> + <dependencies> + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> <scope>compile</scope> - </dependency> + </dependency> <dependency> <groupId>commons-logging</groupId> @@ -87,44 +103,44 @@ <scope>compile</scope> </dependency> - <dependency> - <groupId>commons-primitives</groupId> - <artifactId>commons-primitives</artifactId> - <version>1.0</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2.1</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>commons-beanutils</groupId> - <artifactId>commons-beanutils</artifactId> - <version>1.7.0</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-toolchain</artifactId> - <version>1.0</version> - <scope>test</scope> - </dependency> + <groupId>commons-primitives</groupId> + <artifactId>commons-primitives</artifactId> + <version>1.0</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2.1</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>1.7.0</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-toolchain</artifactId> + <version>1.0</version> + <scope>test</scope> + </dependency> </dependencies> - + <distributionManagement> <site> <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> + <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> </site> </distributionManagement> <profiles> <profile> - <id>project</id> + <id>project</id> <activation> <activeByDefault>true</activeByDefault> </activation> @@ -139,14 +155,14 @@ <!--Main class in JAR --> <maven.jar.main.class>org.codelutin.util.Resource</maven.jar.main.class> </properties> - <pluginRepositories> - <pluginRepository> - <id>codelutin-plugins</id> - <url> - http://lutinbuilder.labs.libre-entreprise.org/maven2 - </url> - </pluginRepository> - </pluginRepositories> + <pluginRepositories> + <pluginRepository> + <id>codelutin-plugins</id> + <url> + http://lutinbuilder.labs.libre-entreprise.org/maven2 + </url> + </pluginRepository> + </pluginRepositories> </profile> </profiles> </project>