[Lutinweb-commits] r6 - trunk/lutinrss
Author: tchemit Date: 2008-04-24 12:43:44 +0000 (Thu, 24 Apr 2008) New Revision: 6 Modified: trunk/lutinrss/pom.xml Log: ajout plugin de generation des sources + javadoc. ajout de plus de plugin de generation de jar (car pour la livraison lm il nous faut un jar, pas un war) Modified: trunk/lutinrss/pom.xml =================================================================== --- trunk/lutinrss/pom.xml 2008-04-24 12:42:05 UTC (rev 5) +++ trunk/lutinrss/pom.xml 2008-04-24 12:43:44 UTC (rev 6) @@ -32,7 +32,7 @@ <version>1.0</version> <!--Description--> - <description>Servlet pouvant �tre appeler depuis du JS pour r�cup�rer un + <description>Servlet pouvant �tre appeler depuis du JS pour r�cup�rer un flux RSS</description> <inceptionYear>2008</inceptionYear> @@ -105,6 +105,41 @@ <target>1.5</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <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> @@ -122,12 +157,15 @@ <pluginRepositories> <pluginRepository> <id>codelutin-plugins</id> - <url> - http://lutinbuilder.labs.libre-entreprise.org/maven2 - </url> + <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> </pluginRepository> </pluginRepositories> </profile> </profiles> + <properties> + <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> + <netbeans.hint.useExternalMaven>true</netbeans.hint.useExternalMaven> + </properties> + </project>
participants (1)
-
tchemit@users.labs.libre-entreprise.org