Author: chatellier Date: 2008-09-24 07:46:24 +0000 (Wed, 24 Sep 2008) New Revision: 25 Added: lutinj2r/trunk/pom.xml Removed: pom.xml Log: Move trunk Copied: lutinj2r/trunk/pom.xml (from rev 24, pom.xml) =================================================================== --- lutinj2r/trunk/pom.xml (rev 0) +++ lutinj2r/trunk/pom.xml 2008-09-24 07:46:24 UTC (rev 25) @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <!--lutinproject.xml--> + <parent> + <groupId>org.codelutin</groupId> + <artifactId>lutinproject</artifactId> + <version>3.0</version> + </parent> + + <!--A unique name for this project--> + <artifactId>lutinj2r</artifactId> + <name>Lutin Java-2-R library</name> + + <!--ejb, jar, war...--> + <packaging>jar</packaging> + + <!--Version--> + <version>0.2-SNAPSHOT</version> + + <!--Description--> + <description>Librairie permettant d'utiliser R en Java, que ce soit par le + Network ou en JNI.</description> + <inceptionYear>2006</inceptionYear> + + <!-- Properties --> + <properties> + <!-- id du projet du labs --> + <labs.id>109</labs.id> + + <!-- Test --> + <maven.test.skip>false</maven.test.skip> + </properties> + + <!--Source control management--> + <scm> + <!-- BE WARE, this value will be overriden by inheritance --> + <connection>scm:svn:svn://anonymous@${labs.host}/svnroot/${labs.project}</connection> + + <!-- BE WARE, this value will be overriden by inheritance --> + <developerConnection>scm:svn:svn+ssh://${username}@${labs.host}/svnroot/${labs.project}</developerConnection> + </scm> + + <!--Librairies--> + <dependencies> + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.1.1</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>externallib</groupId> + <artifactId>JRclient</artifactId> + <version>RF503</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>externallib</groupId> + <artifactId>JRI</artifactId> + <version>0.2-4-cl</version> + <scope>compile</scope> + </dependency> + </dependencies> +</project> Deleted: pom.xml =================================================================== --- pom.xml 2008-09-24 07:46:08 UTC (rev 24) +++ pom.xml 2008-09-24 07:46:24 UTC (rev 25) @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<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> - - <!--lutinproject.xml--> - <parent> - <groupId>org.codelutin</groupId> - <artifactId>lutinproject</artifactId> - <version>3.0</version> - </parent> - - <!--A unique name for this project--> - <artifactId>lutinj2r</artifactId> - <name>Lutin Java-2-R library</name> - - <!--ejb, jar, war...--> - <packaging>jar</packaging> - - <!--Version--> - <version>0.2-SNAPSHOT</version> - - <!--Description--> - <description>Librairie permettant d'utiliser R en Java, que ce soit par le - Network ou en JNI.</description> - <inceptionYear>2006</inceptionYear> - - <!-- Properties --> - <properties> - <!-- id du projet du labs --> - <labs.id>109</labs.id> - - <!-- Test --> - <maven.test.skip>false</maven.test.skip> - </properties> - - <!--Source control management--> - <scm> - <!-- BE WARE, this value will be overriden by inheritance --> - <connection>scm:svn:svn://anonymous@${labs.host}/svnroot/${labs.project}</connection> - - <!-- BE WARE, this value will be overriden by inheritance --> - <developerConnection>scm:svn:svn+ssh://${username}@${labs.host}/svnroot/${labs.project}</developerConnection> - </scm> - - <!--Librairies--> - <dependencies> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1.1</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>externallib</groupId> - <artifactId>JRclient</artifactId> - <version>RF503</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>externallib</groupId> - <artifactId>JRI</artifactId> - <version>0.2-4-cl</version> - <scope>compile</scope> - </dependency> - </dependencies> -</project>