Author: tchemit Date: 2009-02-18 18:46:31 +0000 (Wed, 18 Feb 2009) New Revision: 279 Added: maven-jrst-plugin/tags/0.8.4/ maven-jrst-plugin/tags/0.8.4/changelog.txt maven-jrst-plugin/tags/0.8.4/pom.xml Removed: maven-jrst-plugin/tags/0.8.4/changelog.txt maven-jrst-plugin/tags/0.8.4/pom.xml Log: [maven-release-plugin] copy for tag 0.8.4 Copied: maven-jrst-plugin/tags/0.8.4 (from rev 269, maven-jrst-plugin/trunk) Deleted: maven-jrst-plugin/tags/0.8.4/changelog.txt =================================================================== --- maven-jrst-plugin/trunk/changelog.txt 2009-02-17 17:02:04 UTC (rev 269) +++ maven-jrst-plugin/tags/0.8.4/changelog.txt 2009-02-18 18:46:31 UTC (rev 279) @@ -1,14 +0,0 @@ -ver-0-8-4 chatellier 200902xx - * 20090210 [chemit] use lutinproject-3.4 - * 20090205 Set default locale to 'en' - * 20090205 Remove some required setting for parameter with default values - * 20090205 Write javadoc in english - -ver-0-8-3 thimel 200810XX - * 20081008 [chemit] refactor plugin to generate ony when required - * 20081008 [chemit] Using lutinpluginproject 3.0 in a better way :) - * 20081008 [chemit] add log4j.properties - * 20081008 [chemit] use a DirectoryScanner instead of FileAction since we do not want to parse scm admin files... - -ver-0-8-2 thimel 20080922 - * 20080922 [thimel] Using lutinpluginproject 3.0 Copied: maven-jrst-plugin/tags/0.8.4/changelog.txt (from rev 276, maven-jrst-plugin/trunk/changelog.txt) =================================================================== --- maven-jrst-plugin/tags/0.8.4/changelog.txt (rev 0) +++ maven-jrst-plugin/tags/0.8.4/changelog.txt 2009-02-18 18:46:31 UTC (rev 279) @@ -0,0 +1,14 @@ +ver-0-8-4 chemit 20090218 + * 20090210 [chemit] use lutinproject:3.4 + * 20090205 [chatellier] Set default locale to 'en' + * 20090205 [chatellier] Remove some required setting for parameter with default values + * 20090205 [chatellier] Write javadoc in english + +ver-0-8-3 thimel 200810XX + * 20081008 [chemit] refactor plugin to generate ony when required + * 20081008 [chemit] Using lutinpluginproject 3.0 in a better way :) + * 20081008 [chemit] add log4j.properties + * 20081008 [chemit] use a DirectoryScanner instead of FileAction since we do not want to parse scm admin files... + +ver-0-8-2 thimel 20080922 + * 20080922 [thimel] Using lutinpluginproject 3.0 Deleted: maven-jrst-plugin/tags/0.8.4/pom.xml =================================================================== --- maven-jrst-plugin/trunk/pom.xml 2009-02-17 17:02:04 UTC (rev 269) +++ maven-jrst-plugin/tags/0.8.4/pom.xml 2009-02-18 18:46:31 UTC (rev 279) @@ -1,196 +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-jrst-plugin</artifactId> - - <dependencies> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>jrst</artifactId> - <version>${jrst.version}</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>org.codelutin</groupId> - <artifactId>lutinpluginutil</artifactId> - <version>0.3-SNAPSHOT</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>Maven JRST Plugin</name> - <version>0.8.4-SNAPSHOT</version> - <description> - Maven2 plugin to generate reStructuredText file into xDoc. - </description> - <inceptionYear>2006</inceptionYear> - - <!-- ************************************************************* --> - <!-- *** Build Settings ****************************************** --> - <!-- ************************************************************* --> - <packaging>maven-plugin</packaging> - - <properties> - <!-- id du projet du labs --> - <labs.id>54</labs.id> - - <!-- nom du projet sur le labs --> - <labs.project>jrst</labs.project> - - <!-- Site en et fr --> - <maven.site.locales>fr,en</maven.site.locales> - - <jrst.version>0.8.4-SNAPSHOT</jrst.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>${jrst.version}</version> - <configuration> - <directoryIn>${maven.src.dir}/site</directoryIn> - <directoryOut>${maven.site.gen.dir}</directoryOut> - <defaultLocale>fr</defaultLocale> - <inputEncoding>${maven.compile.encoding}</inputEncoding> - <outputEncoding>${maven.compile.encoding}</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 ************************************** --> - <!-- ************************************************************* --> - <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> - - <!-- Maven Environment : profiles --> - <profiles> - <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>${license-switcher.version}</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-jrst-plugin/tags/0.8.4/pom.xml (from rev 278, maven-jrst-plugin/trunk/pom.xml) =================================================================== --- maven-jrst-plugin/tags/0.8.4/pom.xml (rev 0) +++ maven-jrst-plugin/tags/0.8.4/pom.xml 2009-02-18 18:46:31 UTC (rev 279) @@ -0,0 +1,196 @@ +<?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-jrst-plugin</artifactId> + + <dependencies> + <dependency> + <groupId>org.codelutin</groupId> + <artifactId>jrst</artifactId> + <version>0.8.4</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>Maven JRST Plugin</name> + <version>0.8.4</version> + <description> + Maven2 plugin to generate reStructuredText file into xDoc. + </description> + <inceptionYear>2006</inceptionYear> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + <packaging>maven-plugin</packaging> + + <properties> + <!-- id du projet du labs --> + <labs.id>54</labs.id> + + <!-- nom du projet sur le labs --> + <labs.project>jrst</labs.project> + + <!-- Site en et fr --> + <maven.site.locales>fr,en</maven.site.locales> + + <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 ************************************** --> + <!-- ************************************************************* --> + <scm> + <connection>scm:svn:svn://anonymous@labs.libre-entreprise.org/svnroot/jrst/maven-jrst-plugin/tags/0.8.4</connection> + <developerConnection>scm:svn:svn+ssh://tchemit@labs.libre-entreprise.org/svnroot/jrst/maven-jrst-plugin/tags/0.8.4</developerConnection> + <url>http://labs.libre-entreprise.org/plugins/scmsvn/viewcvs.php/maven-jrst-plugin/tags/0.8.4?root=jrst</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> + + <!-- Maven Environment : profiles --> + <profiles> + <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.6</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>