Author: tchemit Date: 2008-08-05 09:41:22 +0000 (Tue, 05 Aug 2008) New Revision: 111 Removed: trunk/maven-gforgelabs-plugin/.classpath trunk/maven-gforgelabs-plugin/.cvsignore trunk/maven-gforgelabs-plugin/.project trunk/maven-gforgelabs-plugin/profiles.xml Modified: trunk/maven-gforgelabs-plugin/pom.xml Log: suppression profiles.xml + fichiers eclipses + reformat pom Deleted: trunk/maven-gforgelabs-plugin/.classpath =================================================================== --- trunk/maven-gforgelabs-plugin/.classpath 2008-08-05 09:30:43 UTC (rev 110) +++ trunk/maven-gforgelabs-plugin/.classpath 2008-08-05 09:41:22 UTC (rev 111) @@ -1,15 +0,0 @@ -<classpath> - <classpathentry kind="src" path="src/java"/> - <classpathentry kind="output" path="target/classes"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="var" path="M2_REPO/javax/activation/activation/1.1/activation-1.1.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-discovery/commons-discovery/0.2/commons-discovery-0.2.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar"/> - <classpathentry kind="var" path="M2_REPO/axis/axis-jaxrpc/1.4/axis-jaxrpc-1.4.jar"/> - <classpathentry kind="var" path="M2_REPO/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar"/> - <classpathentry kind="var" path="M2_REPO/axis/axis-wsdl4j/1.5.1/axis-wsdl4j-1.5.1.jar"/> - <classpathentry kind="var" path="M2_REPO/axis/axis-saaj/1.4/axis-saaj-1.4.jar"/> - <classpathentry kind="var" path="M2_REPO/commons-codec/commons-codec/1.3/commons-codec-1.3.jar"/> - <classpathentry kind="var" path="M2_REPO/javax/mail/mail/1.4/mail-1.4.jar"/> - <classpathentry kind="var" path="M2_REPO/axis/axis/1.4/axis-1.4.jar"/> -</classpath> \ No newline at end of file Deleted: trunk/maven-gforgelabs-plugin/.cvsignore =================================================================== --- trunk/maven-gforgelabs-plugin/.cvsignore 2008-08-05 09:30:43 UTC (rev 110) +++ trunk/maven-gforgelabs-plugin/.cvsignore 2008-08-05 09:41:22 UTC (rev 111) @@ -1,2 +0,0 @@ -target -.settings Deleted: trunk/maven-gforgelabs-plugin/.project =================================================================== --- trunk/maven-gforgelabs-plugin/.project 2008-08-05 09:30:43 UTC (rev 110) +++ trunk/maven-gforgelabs-plugin/.project 2008-08-05 09:41:22 UTC (rev 111) @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>maven-gforgelabs-plugin</name> - <comment>Code Lutin gForge Maven Plugin</comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> Modified: trunk/maven-gforgelabs-plugin/pom.xml =================================================================== --- trunk/maven-gforgelabs-plugin/pom.xml 2008-08-05 09:30:43 UTC (rev 110) +++ trunk/maven-gforgelabs-plugin/pom.xml 2008-08-05 09:41:22 UTC (rev 111) @@ -1,132 +1,148 @@ <?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"> - - <!--The version of maven's project object model--> - <modelVersion>4.0.0</modelVersion> - - <!--A unique name for this project--> - <groupId>lutinplugin</groupId> - <artifactId>maven-gforgelabs-plugin</artifactId> - <name>maven-gforgelabs-plugin</name> - - <!--ejb, jar, war...--> - <packaging>maven-plugin</packaging> - - <!--Version--> - <version>1.0</version> - - <!--Description--> - <description>Labs (libre-entreprise) gForge Maven Plugin</description> - <inceptionYear>2007</inceptionYear> - - <!-- debut de ce qui devrait etre dans le pere --> - <build> - <sourceDirectory>${maven.src.dir}/java</sourceDirectory> - <testSourceDirectory>${maven.src.dir}/test</testSourceDirectory> - - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - </plugins> - </build> - <distributionManagement> - <repository> - <id>labs</id> - <url> - scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2</url> - </repository> - <site> - <id>labs</id> - <url> - scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/${pom.artifactId}</url> - </site> - </distributionManagement> - <!-- fin de ce qui devrait etre dans le pere --> - - <!--who the developers are for the project--> - <contributors> - <contributor> - <name>Chatellier Eric</name> - <email>chatellier@codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - <roles> - <role>D�veloppeur</role> - </roles> - </contributor> - </contributors> - - <!--Librairies--> - <dependencies> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-plugin-api</artifactId> - <version>2.0</version> - <scope>compile</scope> - </dependency> + 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"> - <dependency> - <groupId>axis</groupId> - <artifactId>axis</artifactId> - <version>1.4</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <version>1.3</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>javax.mail</groupId> - <artifactId>mail</artifactId> - <version>1.4</version> - <scope>compile</scope> - </dependency> - - </dependencies> - <!-- - | surcharge des valeurs par defaut - +--> - <mailingLists> - <mailingList> - <name>lutinbuilder-cvscomit</name> - <subscribe> - http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-cvscommit</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-cvscommit</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-cvscommit/</archive> - </mailingList> - - <mailingList> - <name>lutinbuilder-devel</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-devel</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-devel</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-devel/</archive> - </mailingList> - - <mailingList> - <name>lutinbuilder-user</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-user</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-user</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-user/</archive> - </mailingList> - </mailingLists> + <!--The version of maven's project object model--> + <modelVersion>4.0.0</modelVersion> - <scm> - <url>http://cvs.labs.libre-entreprise.org/cgi-bin/cvsweb.cgi/?cvsroot=lutinbuilder</url> - <connection>scm:cvs:pserver:anonymous@cvs.labs.libre-entreprise.org:/cvsroot/lutinbuilder:${pom.artifactId}</connection> - </scm> -<!-- - | fin de surcharge - +--> -</project> \ No newline at end of file + <!--A unique name for this project--> + <groupId>lutinplugin</groupId> + <artifactId>maven-gforgelabs-plugin</artifactId> + <name>maven-gforgelabs-plugin</name> + + <!--ejb, jar, war...--> + <packaging>maven-plugin</packaging> + + <!--Version--> + <version>1.0</version> + + <!--Description--> + <description>Labs (libre-entreprise) gForge Maven Plugin</description> + <inceptionYear>2007</inceptionYear> + + <properties> + <!--Source base dir--> + <maven.src.dir>${basedir}/src</maven.src.dir> + + <!--Compile with ?--> + <maven.compile.source>1.5</maven.compile.source> + <maven.compile.target>1.5</maven.compile.target> + <maven.compile.encoding>UTF-8</maven.compile.encoding> + + </properties> + + <!-- debut de ce qui devrait etre dans le pere --> + <build> + <sourceDirectory>${maven.src.dir}/java</sourceDirectory> + <testSourceDirectory>${maven.src.dir}/test</testSourceDirectory> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>${maven.compile.source}</source> + <target>${maven.compile.target}</target> + <encoding>${maven.compile.encoding}</encoding> + </configuration> + </plugin> + </plugins> + </build> + <distributionManagement> + <repository> + <id>labs</id> + <url> + scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/maven2 + </url> + </repository> + <site> + <id>labs</id> + <url> + scp://labs.libre-entreprise.org/home/groups/lutinbuilder/htdocs/${pom.artifactId} + </url> + </site> + </distributionManagement> + <!-- fin de ce qui devrait etre dans le pere --> + + <!--who the developers are for the project--> + <contributors> + <contributor> + <name>Chatellier Eric</name> + <email>chatellier@codelutin.com</email> + <organization>Code Lutin</organization> + <timezone>+2</timezone> + <roles> + <role>D�veloppeur</role> + </roles> + </contributor> + </contributors> + + <!--Librairies--> + <dependencies> + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>2.0</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>axis</groupId> + <artifactId>axis</artifactId> + <version>1.4</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.3</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + <version>1.4</version> + <scope>compile</scope> + </dependency> + + </dependencies> + <!-- + | surcharge des valeurs par defaut + +--> + <mailingLists> + <mailingList> + <name>lutinbuilder-cvscomit</name> + <subscribe> + http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-cvscomm... + </subscribe> + <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-cvscommit</unsubscribe> + <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-cvscommit/</archive> + </mailingList> + + <mailingList> + <name>lutinbuilder-devel</name> + <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-devel</subscribe> + <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-devel</unsubscribe> + <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-devel/</archive> + </mailingList> + + <mailingList> + <name>lutinbuilder-user</name> + <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-user</subscribe> + <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinbuilder-user</unsubscribe> + <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinbuilder-user/</archive> + </mailingList> + </mailingLists> + + <scm> + <url>http://cvs.labs.libre-entreprise.org/cgi-bin/cvsweb.cgi/?cvsroot=lutinbuilder</url> + <connection>scm:cvs:pserver:anonymous@cvs.labs.libre-entreprise.org:/cvsroot/lutinbuilder:${pom.artifactId} + </connection> + </scm> + <!-- + | fin de surcharge + +--> +</project> Deleted: trunk/maven-gforgelabs-plugin/profiles.xml =================================================================== --- trunk/maven-gforgelabs-plugin/profiles.xml 2008-08-05 09:30:43 UTC (rev 110) +++ trunk/maven-gforgelabs-plugin/profiles.xml 2008-08-05 09:41:22 UTC (rev 111) @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<settings> - <profiles> - <profile> - <id>project</id> - - <activation> - <activeByDefault>true</activeByDefault> - </activation> - - <properties> - <!--Source base dir--> - <maven.src.dir>${basedir}/src</maven.src.dir> - - <!--Compile with ?--> - <maven.compile.source>1.5</maven.compile.source> - <maven.compile.target>1.5</maven.compile.target> - </properties> - </profile> - </profiles> -</settings> \ No newline at end of file