Author: chatellier Date: 2008-09-02 15:08:26 +0000 (Tue, 02 Sep 2008) New Revision: 119 Added: trunk/maven-processor-plugin/src/main/ trunk/maven-processor-plugin/src/main/java/ trunk/maven-processor-plugin/src/main/resources/ trunk/maven-processor-plugin/src/site/ Removed: trunk/maven-processor-plugin/site/ trunk/maven-processor-plugin/src/java/ Modified: trunk/maven-processor-plugin/pom.xml trunk/maven-processor-plugin/src/main/java/org/codelutin/processor/plugin/ProcessorPlugin.java Log: Maven2 layout and LGPL3 Modified: trunk/maven-processor-plugin/pom.xml =================================================================== --- trunk/maven-processor-plugin/pom.xml 2008-09-02 15:06:54 UTC (rev 118) +++ trunk/maven-processor-plugin/pom.xml 2008-09-02 15:08:26 UTC (rev 119) @@ -5,15 +5,15 @@ <!--The version of maven's project object model--> <modelVersion>4.0.0</modelVersion> - <!--lutinproject.xml--> - <!--parent> - <groupId>lutinlib</groupId> + <!-- parent --> + <parent> + <groupId>org.codelutin</groupId> <artifactId>lutinproject</artifactId> - <version>2.2</version> - </parent--> + <version>2.5</version> + </parent> <!--A unique name for this project--> - <groupId>lutinplugin</groupId> + <groupId>org.codelutin.maven.plugins</groupId> <artifactId>maven-processor-plugin</artifactId> <name>Plugin maven Lutin Processor</name> @@ -21,71 +21,22 @@ <packaging>maven-plugin</packaging> <!--Version--> - <version>0.13-SNAPSHOT</version> + <version>0.15-SNAPSHOT</version> <!--Description--> <inceptionYear>2006</inceptionYear> <properties> - <!--Source base dir--> - <maven.src.dir>${basedir}/src</maven.src.dir> + <!-- id du projet du labs --> + <labs.id>28</labs.id> - <!--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> + <!-- nom du projet sur le labs --> + <labs.project>lutinprocessor</labs.project> + <!-- Test --> + <maven.test.skip>false</maven.test.skip> </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> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>${maven.compile.source}</source> - <target>${maven.compile.target}</target> - <encoding>${maven.compile.encoding}</encoding> - </configuration> - </plugin> - - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - <executions> - <execution> - <phase>verify</phase> - <goals> - <goal>jar</goal> - </goals> - </execution> - </executions> - </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/lutinprocessor/htdocs/${pom.artifactId}</url> - </site> - </distributionManagement> - <!-- fin de ce qui devrait etre dans le pere --> - - <!--Tracking--> - <issueManagement> - <url>http://labs.libre-entreprise.org/tracker/?group_id=28</url> - </issueManagement> - <!--who the developers are for the project--> <contributors> <contributor> @@ -105,58 +56,23 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> - <version>2.0</version> + <version>2.0.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> - <version>2.0.4</version> + <version>2.0.9</version> <scope>compile</scope> </dependency> <dependency> - <groupId>lutinlib</groupId> + <groupId>org.codelutin</groupId> <artifactId>lutinprocessor</artifactId> - <version>0.13-SNAPSHOT</version> + <version>0.15-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies> - <!-- - | surcharge des valeurs par defaut - +--> - <mailingLists> - <mailingList> - <name>lutinprocessor-cvscomit</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-cvscommit</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-cvscommit</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinprocessor-cvscommit/</archive> - </mailingList> - - <mailingList> - <name>lutinprocessor-devel</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-devel</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-devel</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinprocessor-devel/</archive> - </mailingList> - - <mailingList> - <name>lutinprocessor-user</name> - <subscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-user</subscribe> - <unsubscribe>http://lists.labs.libre-entreprise.org/mailman/listinfo/lutinprocessor-user</unsubscribe> - <archive>http://lists.labs.libre-entreprise.org/pipermail/lutinprocessor-user/</archive> - </mailingList> - </mailingLists> - - <scm> - <url>http://cvs.labs.libre-entreprise.org/cgi-bin/cvsweb.cgi/?cvsroot=lutinprocessor</url> - <connection>scm:cvs:pserver:anonymous@cvs.labs.libre-entreprise.org:/cvsroot/lutinprocessor:${pom.artifactId} - </connection> - </scm> - <!-- - | fin de surcharge - +--> - </project> Copied: trunk/maven-processor-plugin/src/main/java (from rev 117, trunk/maven-processor-plugin/src/java) Modified: trunk/maven-processor-plugin/src/main/java/org/codelutin/processor/plugin/ProcessorPlugin.java =================================================================== --- trunk/maven-processor-plugin/src/java/org/codelutin/processor/plugin/ProcessorPlugin.java 2008-08-18 09:54:05 UTC (rev 117) +++ trunk/maven-processor-plugin/src/main/java/org/codelutin/processor/plugin/ProcessorPlugin.java 2008-09-02 15:08:26 UTC (rev 119) @@ -1,21 +1,19 @@ -/* *##% - * Copyright (C) 2006 - * Code Lutin, C?dric Pineau, Benjamin Poussin +/* *##% Plugin maven Lutin Processor + * Copyright (C) 2006 - 2008 CodeLutin * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU General Lesser Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - *##%*/ + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * <http://www.gnu.org/licenses/lgpl-3.0.html>. ##%*/ /* * * ProcessorPlugin.java @@ -176,4 +174,4 @@ } } -} \ No newline at end of file +} Copied: trunk/maven-processor-plugin/src/site (from rev 117, trunk/maven-processor-plugin/site)