Author: tchemit Date: 2009-02-18 17:20:10 +0000 (Wed, 18 Feb 2009) New Revision: 176 Added: maven-processor-plugin/tags/0.17/ maven-processor-plugin/tags/0.17/changelog.txt maven-processor-plugin/tags/0.17/pom.xml Removed: maven-processor-plugin/tags/0.17/changelog.txt maven-processor-plugin/tags/0.17/pom.xml Log: [maven-release-plugin] copy for tag 0.17 Copied: maven-processor-plugin/tags/0.17 (from rev 167, maven-processor-plugin/trunk) Deleted: maven-processor-plugin/tags/0.17/changelog.txt =================================================================== --- maven-processor-plugin/trunk/changelog.txt 2009-02-18 15:07:48 UTC (rev 167) +++ maven-processor-plugin/tags/0.17/changelog.txt 2009-02-18 17:20:10 UTC (rev 176) @@ -1,12 +0,0 @@ -ver-0-17 ??? (200902??) - * Parent is org.codelutin:lutinproject:3.4 - * use same version as maven-processor-plugin - -ver-0-16 thimel 20080925 - * Using lutinpluginutil from this plugin dependencies directly - -ver-0-15 thimel 20080922 - * Added changelog - * plugin is now a lutinpluginproject 3.0 - * groupId is org.codelutin - * compatible with maven2 standard structure Copied: maven-processor-plugin/tags/0.17/changelog.txt (from rev 170, maven-processor-plugin/trunk/changelog.txt) =================================================================== --- maven-processor-plugin/tags/0.17/changelog.txt (rev 0) +++ maven-processor-plugin/tags/0.17/changelog.txt 2009-02-18 17:20:10 UTC (rev 176) @@ -0,0 +1,12 @@ +ver-0-17 chemit (20090218) + * Parent is org.codelutin:lutinproject:3.4 + * use same version as maven-processor-plugin + +ver-0-16 thimel 20080925 + * Using lutinpluginutil from this plugin dependencies directly + +ver-0-15 thimel 20080922 + * Added changelog + * plugin is now a lutinpluginproject 3.0 + * groupId is org.codelutin + * compatible with maven2 standard structure Deleted: maven-processor-plugin/tags/0.17/pom.xml =================================================================== --- maven-processor-plugin/trunk/pom.xml 2009-02-18 15:07:48 UTC (rev 167) +++ maven-processor-plugin/tags/0.17/pom.xml 2009-02-18 17:20:10 UTC (rev 176) @@ -1,189 +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"> - - <modelVersion>4.0.0</modelVersion> - - <!-- ************************************************************* --> - <!-- *** POM Relationships *************************************** --> - <!-- ************************************************************* --> - - <parent> - <groupId>org.codelutin</groupId> - <artifactId>lutinproject</artifactId> - <version>3.4-SNAPSHOT</version> - </parent> - - <artifactId>maven-processor-plugin</artifactId> - <version>0.17-SNAPSHOT</version> - - <dependencies> - - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinprocessor</artifactId> - <version>${project.version}</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinpluginutil</artifactId> - <version>${lutinpluginutil.version}</version> - <scope>compile</scope> - </dependency> - - </dependencies> - - <!-- ************************************************************* --> - <!-- *** Project Information ************************************* --> - <!-- ************************************************************* --> - <name>Plugin maven Lutin Processor</name> - <inceptionYear>2006</inceptionYear> - - <!--who the developers are for the project--> - <contributors> - <contributor> - <name>Julien Ruchaud</name> - <email>ruchaud@codelutin.com</email> - <organization>Code Lutin</organization> - <timezone>+2</timezone> - <roles> - <role>Développeur</role> - </roles> - </contributor> - </contributors> - - <!-- ************************************************************* --> - <!-- *** Build Settings ****************************************** --> - <!-- ************************************************************* --> - - <packaging>maven-plugin</packaging> - - <properties> - <!-- id du projet du labs --> - <labs.id>28</labs.id> - - <!-- nom du projet sur le labs --> - <labs.project>lutinprocessor</labs.project> - - <lutinpluginutil.version>0.2</lutinpluginutil.version> - </properties> - - <build> - <defaultGoal>install</defaultGoal> - - <plugins> - - <!-- plugin plugin --> - <plugin> - <artifactId>maven-plugin-plugin</artifactId> - <version>2.4.3</version> - <executions> - <execution> - <goals> - <goal>helpmojo</goal> - </goals> - </execution> - </executions> - </plugin> - - <!-- Always process jrst files, but only called on pre-site phase --> - <plugin> - <groupId>org.codelutin</groupId> - <artifactId>maven-jrst-plugin</artifactId> - <version>0.8.3</version> - <configuration> - <directoryIn>${maven.src.dir}/site</directoryIn> - <directoryOut>${maven.site.gen.dir}</directoryOut> - <defaultLocale>fr</defaultLocale> - <inputEncoding>${project.build.sourceEncoding}</inputEncoding> - <outputEncoding>${project.build.sourceEncoding}</outputEncoding> - </configuration> - <executions> - <execution> - <phase>pre-site</phase> - <goals> - <goal>jrst</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <!--Site--> - <reporting> - <plugins> - <!--Site report's plugin--> - <plugin> - <artifactId>maven-plugin-plugin</artifactId> - </plugin> - </plugins> - </reporting> - - - <!-- ************************************************************* --> - <!-- *** Build Environment ************************************** --> - <!-- ************************************************************* --> - - <!--Source control management--> - <scm> - <connection>${maven.scm.connection}</connection> - <developerConnection>${maven.scm.developerConnection}</developerConnection> - <url>${maven.scm.url}</url> - </scm> - - <!--Code Lutin Repository--> - <repositories> - <repository> - <id>codelutin-repository</id> - <name>CodeLutinRepository</name> - <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> - <snapshots> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </snapshots> - <releases> - <enabled>true</enabled> - <checksumPolicy>warn</checksumPolicy> - </releases> - </repository> - </repositories> - - <profiles> - <!-- perform only on a release stage when using the maven-release-plugin --> - <profile> - <id>release-profile</id> - <activation> - <property> - <name>performRelease</name> - <value>true</value> - </property> - </activation> - <build> - <plugins> - <!-- always add license and third-party files to classpath --> - <plugin> - <groupId>org.codelutin</groupId> - <artifactId>maven-license-switcher-plugin</artifactId> - <version>0.5</version> - <configuration> - <licenseName>${license-switcher.licenseName}</licenseName> - </configuration> - <executions> - <execution> - <id>attach-licenses</id> - <goals> - <goal>license</goal> - <goal>third-party</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - -</project> Copied: maven-processor-plugin/tags/0.17/pom.xml (from rev 175, maven-processor-plugin/trunk/pom.xml) =================================================================== --- maven-processor-plugin/tags/0.17/pom.xml (rev 0) +++ maven-processor-plugin/tags/0.17/pom.xml 2009-02-18 17:20:10 UTC (rev 176) @@ -0,0 +1,204 @@ +<?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"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <parent> + <groupId>org.codelutin</groupId> + <artifactId>lutinproject</artifactId> + <version>3.4</version> + </parent> + + <artifactId>maven-processor-plugin</artifactId> + <version>0.17</version> + + <dependencies> + + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>lutinprocessor</artifactId> + <version>0.17</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>lutinpluginutil</artifactId> + <version>${lutinpluginutil.version}</version> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-plugin-api</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + <version>${maven.version}</version> + <scope>provided</scope> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + <name>Plugin maven Lutin Processor</name> + <inceptionYear>2006</inceptionYear> + + <!--who the developers are for the project--> + <contributors> + <contributor> + <name>Julien Ruchaud</name> + <email>ruchaud@codelutin.com</email> + <organization>Code Lutin</organization> + <timezone>+2</timezone> + <roles> + <role>Développeur</role> + </roles> + </contributor> + </contributors> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>maven-plugin</packaging> + + <properties> + <!-- id du projet du labs --> + <labs.id>28</labs.id> + + <!-- nom du projet sur le labs --> + <labs.project>lutinprocessor</labs.project> + + <lutinpluginutil.version>0.3</lutinpluginutil.version> + + <maven.version>2.0.9</maven.version> + </properties> + + <build> + <defaultGoal>install</defaultGoal> + + <plugins> + + <!-- plugin plugin --> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + <version>2.4.3</version> + <executions> + <execution> + <goals> + <goal>helpmojo</goal> + </goals> + </execution> + </executions> + </plugin> + + <!-- Always process jrst files, but only called on pre-site phase --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-jrst-plugin</artifactId> + <version>0.8.3</version> + <configuration> + <directoryIn>${maven.src.dir}/site</directoryIn> + <directoryOut>${maven.site.gen.dir}</directoryOut> + <defaultLocale>fr</defaultLocale> + <inputEncoding>${project.build.sourceEncoding}</inputEncoding> + <outputEncoding>${project.build.sourceEncoding}</outputEncoding> + </configuration> + <executions> + <execution> + <phase>pre-site</phase> + <goals> + <goal>jrst</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <!--Site--> + <reporting> + <plugins> + <!--Site report's plugin--> + <plugin> + <artifactId>maven-plugin-plugin</artifactId> + </plugin> + </plugins> + </reporting> + + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <!--Source control management--> + <scm> + <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/lutinprocessor/maven-processor-plugin/tags/0.17</connection> + <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/lutinprocessor/maven-processor-plugin/tags/0.17</developerConnection> + <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/maven-processor-plugin/tags/0.17?root=lutinprocessor</url> + </scm> + + <!--Code Lutin Repository--> + <repositories> + <repository> + <id>codelutin-repository</id> + <name>CodeLutinRepository</name> + <url>http://lutinbuilder.labs.libre-entreprise.org/maven2</url> + <snapshots> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </snapshots> + <releases> + <enabled>true</enabled> + <checksumPolicy>warn</checksumPolicy> + </releases> + </repository> + </repositories> + + <profiles> + <!-- perform only on a release stage when using the maven-release-plugin --> + <profile> + <id>release-profile</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <!-- always add license and third-party files to classpath --> + <plugin> + <groupId>org.codelutin</groupId> + <artifactId>maven-license-switcher-plugin</artifactId> + <version>0.5</version> + <configuration> + <licenseName>${license-switcher.licenseName}</licenseName> + </configuration> + <executions> + <execution> + <id>attach-licenses</id> + <goals> + <goal>license</goal> + <goal>third-party</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + +</project>