Author: tchemit Date: 2008-05-28 23:14:21 +0000 (Wed, 28 May 2008) New Revision: 63 Modified: trunk/lutinrss/pom.xml Log: lutinrss version 2.1 Modified: trunk/lutinrss/pom.xml =================================================================== --- trunk/lutinrss/pom.xml 2008-05-19 18:53:50 UTC (rev 62) +++ trunk/lutinrss/pom.xml 2008-05-28 23:14:21 UTC (rev 63) @@ -2,7 +2,7 @@ <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"> <!--The version of maven's project object model--> - <modelVersion>4.0.0</modelVersion> + <modelVersion>4.0.0</modelVersion> <!--lutinproject.xml--> <!-- @@ -12,94 +12,86 @@ <version>2.2</version> </parent> --> - - <distributionManagement> - <site> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> - </site> - <repository> - <id>labs</id> - <url>scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2</url> - </repository> + <distributionManagement> + <site> + <id>labs</id> + <url>scp://labs.libre-entreprise.org/home/groups/${pom.artifactId}/htdocs/</url> + </site> + <repository> + <id>labs</id> + <url>scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2</url> + </repository> + </distributionManagement> - </distributionManagement> - <!--A unique name for this project--> - <groupId>lutinlib</groupId> - <artifactId>lutinrss</artifactId> - <name>LutinRSS</name> + <groupId>lutinlib</groupId> + <artifactId>lutinrss</artifactId> + <name>LutinRSS</name> <!--ejb, jar, war...--> - <packaging>war</packaging> + <packaging>war</packaging> <!--Version--> - <version>2.0</version> + <version>2.1</version> <!--Description--> - <description>Servlet pouvant �tre appeler depuis du JS pour r�cup�rer un - flux RSS</description> - <inceptionYear>2008</inceptionYear> + <description>Servlet pouvant etre appeler depuis du JS pour recuperer un + flux RSS + </description> + <inceptionYear>2008</inceptionYear> <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=41</url> - </issueManagement> + <issueManagement> + <url>http://labs.libre-entreprise.org/tracker/?group_id=41</url> + </issueManagement> - <!--Librairies--> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.2</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>jdom</groupId> - <artifactId>jdom</artifactId> - <version>1.0</version> - <scope>compile</scope> - </dependency> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.2</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>jdom</groupId> + <artifactId>jdom</artifactId> + <version>1.0</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>rome</groupId> + <artifactId>rome</artifactId> + <version>0.9</version> + <scope>compile</scope> + </dependency> - <dependency> - <groupId>rome</groupId> - <artifactId>rome</artifactId> - <version>0.9</version> - <scope>compile</scope> - </dependency> - <!--Provided--> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.4</version> - <scope>provided</scope> - </dependency> - </dependencies> - + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + <scope>provided</scope> + </dependency> + </dependencies> <build> <plugins> <plugin> @@ -126,7 +118,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> - <execution> + <execution> <goals> <goal>jar</goal> </goals> @@ -144,18 +136,17 @@ </goals> </execution> </executions> - </plugin> + </plugin> </plugins> </build> - <profiles> <profile> - <id>project</id> + <id>project</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> -<!-- <maven.test.skip>true</maven.test.skip> --> + <maven.test.skip>false</maven.test.skip> <maven.compile.source>1.5</maven.compile.source> <maven.compile.target>1.5</maven.compile.target> </properties> @@ -167,10 +158,8 @@ </pluginRepositories--> </profile> </profiles> - <properties> <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> <netbeans.hint.useExternalMaven>true</netbeans.hint.useExternalMaven> </properties> - </project>