r2605 - in trunk: . src/license src/main/java/org/nuiton/config src/main/resources src/site src/site/apt
Author: tchemit Date: 2014-06-01 15:36:37 +0200 (Sun, 01 Jun 2014) New Revision: 2605 Url: http://forge.nuiton.org/projects/nuiton-maven-report-plugin/repository/revis... Log: fixes #3225: Fix documents links fixes #3233: Use maven 3 API fixes #3226: Updates some dependencies Added: trunk/src/main/resources/config-report.properties trunk/src/main/resources/config-report_en.properties trunk/src/main/resources/config-report_fr.properties Removed: trunk/src/main/resources/application-config-report.properties trunk/src/main/resources/application-config-report_en.properties trunk/src/main/resources/application-config-report_fr.properties Modified: trunk/pom.xml trunk/src/license/THIRD-PARTY.properties trunk/src/main/java/org/nuiton/config/AbstractApplicationConfigReport.java trunk/src/main/java/org/nuiton/config/ApplicationConfigReportRenderer.java trunk/src/site/apt/index.apt trunk/src/site/apt/usage.apt.vm trunk/src/site/apt/versions.apt trunk/src/site/site_fr.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/pom.xml 2014-06-01 13:36:37 UTC (rev 2605) @@ -5,7 +5,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>mavenpom4redmineAndCentral</artifactId> - <version>4.7</version> + <version>5.0.8-SNAPSHOT</version> </parent> <artifactId>nuiton-maven-report-plugin</artifactId> @@ -14,7 +14,7 @@ <name>Nuiton Maven reports plugin</name> <description>Maven reports for Nuiton libraries</description> - <url>http://maven-site.nuiton.org/nuiton-maven-report-plugin</url> + <url>http://doc.nuiton.org/nuiton-maven-report-plugin</url> <inceptionYear>2013</inceptionYear> <developers> @@ -35,28 +35,27 @@ <scm> <connection> - scm:svn:https://nuiton.org/svn/nuiton-maven-report-plugin/trunk + scm:svn:https://svn.nuiton.org/nuiton-maven-report-plugin/trunk </connection> <developerConnection> - scm:svn:https://nuiton.org/svn/nuiton-maven-report-plugin/trunk + scm:svn:https://svn.nuiton.org/nuiton-maven-report-plugin/trunk </developerConnection> <url> - https://nuiton.org/projects/nuiton-maven-report-plugin/repository/show/trunk + https://forge.nuiton.org/projects/nuiton-maven-report-plugin/repository/show... </url> </scm> <distributionManagement> <site> - <id>${platform}</id> + <id>doc.${platform}</id> <url>${our.site.repository}/${projectId}</url> </site> </distributionManagement> <properties> - <projectId>nuiton-maven-report-plugin</projectId> + <doxiaVersion>1.5</doxiaVersion> + <mavenVersion>3.2.1</mavenVersion> - <doxiaVersion>1.4</doxiaVersion> - <!-- Documentation is in apt format --> <siteSourcesType>apt</siteSourcesType> @@ -78,14 +77,56 @@ <dependency> <groupId>org.nuiton.i18n</groupId> <artifactId>nuiton-i18n</artifactId> - <version>3.0</version> + <version>3.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> - <artifactId>maven-project</artifactId> + <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-jdk14</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-file</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-http</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-http-lightweight</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-webdav-jackrabbit</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh-external</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-interactivity-api</artifactId> + </exclusion> + <exclusion> + <groupId>classworlds</groupId> + <artifactId>classworlds</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -126,12 +167,18 @@ <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> - <version>2.2.1</version> + <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>2.2</version> + <exclusions> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-project</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -149,7 +196,6 @@ <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>3.0.17</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> @@ -175,7 +221,7 @@ <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-site-renderer</artifactId> - <version>${doxiaVersion}</version> + <version>1.4</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> @@ -197,7 +243,7 @@ <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> - <version>1.3.04</version> + <version>2.0.2</version> <scope>provided</scope> </dependency> Modified: trunk/src/license/THIRD-PARTY.properties =================================================================== --- trunk/src/license/THIRD-PARTY.properties 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/license/THIRD-PARTY.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -1,11 +1,11 @@ # Generated by org.codehaus.mojo.license.AddThirdPartyMojo #------------------------------------------------------------------------------- # Already used licenses in project : -# - Apache License # - Apache Software License, Version 1.1 # - BSD License # - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 # - Common Public License Version 1.0 +# - Eclipse Public License, Version 1.0 # - Indiana University Extreme! Lab Software License, vesion 1.1.1 # - Lesser General Public License (LGPL) v 3.0 # - Lesser General Public License (LPGL) @@ -14,18 +14,15 @@ # - New BSD License # - Public Domain # - The Apache Software License, Version 2.0 -# - http://classworlds.codehaus.org/license.html #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Fri Feb 01 00:49:58 CET 2013 +#Sun Jun 01 14:41:56 CEST 2014 antlr--antlr--2.7.2=BSD License -classworlds--classworlds--1.1-alpha-2=http\://classworlds.codehaus.org/license.html commons-digester--commons-digester--1.6=The Apache Software License, Version 2.0 commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD License -org.codehaus.plexus--plexus-container-default--1.0-alpha-9-stable-1=The Apache Software License, Version 2.0 org.codehaus.plexus--plexus-i18n--1.0-beta-10=The Apache Software License, Version 2.0 org.codehaus.plexus--plexus-velocity--1.1.7=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: trunk/src/main/java/org/nuiton/config/AbstractApplicationConfigReport.java =================================================================== --- trunk/src/main/java/org/nuiton/config/AbstractApplicationConfigReport.java 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/main/java/org/nuiton/config/AbstractApplicationConfigReport.java 2014-06-01 13:36:37 UTC (rev 2605) @@ -144,7 +144,7 @@ * * @since 2.6.10 */ - @Component + @Parameter(defaultValue = "${project}", required = true) protected MavenProject project; @@ -181,7 +181,7 @@ @Override public String getOutputName() { - return "application-config-report"; + return "config-report"; } public String getDescription(Locale locale) { @@ -236,6 +236,7 @@ i18n, locale, getOutputName(), + getOutputName(), configProviders, showOptionDetail); renderer.render(); Modified: trunk/src/main/java/org/nuiton/config/ApplicationConfigReportRenderer.java =================================================================== --- trunk/src/main/java/org/nuiton/config/ApplicationConfigReportRenderer.java 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/main/java/org/nuiton/config/ApplicationConfigReportRenderer.java 2014-06-01 13:36:37 UTC (rev 2605) @@ -66,6 +66,13 @@ protected final Locale locale; /** + * The report physical name (used to generated link). + * + * @since 3.0 + */ + protected final String reportName; + + /** * The name of the bundle containing our I18n resources. * * @since 2.6.10 @@ -90,12 +97,14 @@ public ApplicationConfigReportRenderer(Sink sink, I18N i18n, Locale locale, + String reportName, String bundleName, Set<ApplicationConfigProvider> configProviders, boolean optionWithDetail) { super(sink); this.i18n = i18n; this.locale = locale; + this.reportName = reportName; this.bundleName = bundleName; this.sink = sink; this.configProviders = configProviders; @@ -120,7 +129,7 @@ sink.paragraph_(); sink.paragraph(); - sink.link("http://maven-site.nuiton.org/nuiton-utils/nuiton-config/index.html"); + sink.link("http://doc.nuiton.org/nuiton-config/index.html"); sink.text(getText("report.overview.more.information")); sink.link_(); sink.paragraph_(); @@ -169,7 +178,7 @@ for (ApplicationConfigProvider configProvider : configProviders) { sink.tableRow(); - sinkCellLink(configProvider.getName(), "./application-config-report.html#detail_" + configProvider.getName()); + sinkCellLink(configProvider.getName(), "detail_" + configProvider.getName()); sinkCellText(configProvider.getDescription(locale)); sinkCellText(configProvider.getOptions().length + ""); sinkCellText(configProvider.getActions().length + ""); @@ -277,8 +286,7 @@ if (optionWithDetail) { sinkCellLink( option.getKey(), - "./application-config-report.html#detail_" + - configProvider.getName() + "_" + option.getKey()); + "detail_" + configProvider.getName() + "_" + option.getKey()); } else { sinkCellText(option.getKey()); } @@ -406,9 +414,7 @@ sink.table_(); sink.paragraph(); - sink.link("./application-config-report.html#detail_options_" + configProvider.getName()); - sink.text(getText("report.back.options.table")); - sink.link_(); + sinkLinkToAnchor(getText("report.back.options.table"), "detail_options_" + configProvider.getName()); sink.paragraph_(); sink.section4_(); @@ -495,10 +501,14 @@ protected void sinkCellLink(String text, String url) { sink.tableCell(); - sink.link(url); + sinkLinkToAnchor(text, url); + sink.tableCell_(); + } + + protected void sinkLinkToAnchor(String text, String anchor) { + sink.link("./" + reportName + ".html#" + anchor); sink.text(text); sink.link_(); - sink.tableCell_(); } protected Collection<ConfigOptionDef> getOptions( @@ -515,5 +525,4 @@ }); return result; } - } Deleted: trunk/src/main/resources/application-config-report.properties =================================================================== --- trunk/src/main/resources/application-config-report.properties 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/main/resources/application-config-report.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -1,54 +0,0 @@ -### -# #%L -# Nuiton Utils :: Nuiton Maven Report Plugin -# -# $Id$ -# $HeadURL$ -# %% -# Copyright (C) 2012 CodeLutin -# %% -# 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 Lesser Public License for more details. -# -# 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>. -# #L% -### -report.title=ApplicationConfig Report -report.description=Provides details of configuration options useable on the project. -report.overview.title=Overview -report.overview.text=This report summarizes all configuration options useable on the project. -report.detail.text.noConfig=No configuration found in class-path. -report.config.name=Name of configuration -report.noDefaultValue=No default value -report.config.description=Description -report.config.nbOptions=Number of options -report.config.nbActions=Number of actions -report.config.option.key=Key -report.config.option.description=Description -report.config.option.type=Type -report.config.option.defaultValue=Default Value -report.config.option.final=Can be modified -report.config.option.transient=Can be saved -report.config.option.detail=Details of option -report.overview.more.information=More information about ApplicationConfig -report.true=Yes -report.false=No -report.back.options.table=Back to options table -report.detail.title=Detail of configurations -report.detail.text=We give details of each configuration of the project -report.detail.configuration.title=Configuration -report.detail.options.title=Configuration options -report.detail.actions.title=Configuration actions -report.detail.options.noOptions=No option found for this configuration -report.detail.actions.noActions=No action found for this configuration - - Deleted: trunk/src/main/resources/application-config-report_en.properties =================================================================== --- trunk/src/main/resources/application-config-report_en.properties 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/main/resources/application-config-report_en.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -1,24 +0,0 @@ -### -# #%L -# Nuiton Utils :: Nuiton Maven Report Plugin -# -# $Id$ -# $HeadURL$ -# %% -# Copyright (C) 2012 CodeLutin -# %% -# 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 Lesser Public License for more details. -# -# 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>. -# #L% -### Deleted: trunk/src/main/resources/application-config-report_fr.properties =================================================================== --- trunk/src/main/resources/application-config-report_fr.properties 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/main/resources/application-config-report_fr.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -1,52 +0,0 @@ -### -# #%L -# Nuiton Utils :: Nuiton Maven Report Plugin -# -# $Id$ -# $HeadURL$ -# %% -# Copyright (C) 2012 CodeLutin -# %% -# 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 Lesser Public License for more details. -# -# 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>. -# #L% -### -report.title=Rapport ApplicationConfig -report.description=Fournit des informations sur les configurations utilisables dans le projet. -report.overview.title=Pr\u00E9ambule -report.overview.text=Ce rapport d\u00E9crit les configurations utilisables dans ce projet. -report.detail.text.noConfig=Aucune configuration trouv\u00E9e dans le class-path. -report.config.option.key=Clef -report.noDefaultValue=Pas de valeur par d\u00E9faut -report.config.option.description=Description -report.config.option.type=Type -report.config.option.defaultValue=Valeur par d\u00E9faut -report.config.option.final=Option modifiable -report.config.option.transient=Option sauvegardable -report.config.name=Nom de la configuration -report.config.description=Description -report.config.nbOptions=Nombre d'options -report.config.nbActions=Nombre d'actions -report.config.option.detail=D\u00E9tails de l'option -report.back.options.table=Retour sur la table des options -report.overview.more.information=Pour plus d'informations sur ApplicationConfig -report.true=Oui -report.false=Non -report.detail.title=D\u00E9tail des configurations -report.detail.text=On d\u00E9taille ici une par une les configurations d\u00E9finies pour le projet -report.detail.configuration.title=Configuration -report.detail.options.title=Options de la configuration -report.detail.actions.title=Actions de la configuration -report.detail.options.noOptions=Aucune option d\u00E9finie pour cette configuration -report.detail.actions.noActions=Aucune action d\u00E9finie pour cette configuration \ No newline at end of file Copied: trunk/src/main/resources/config-report.properties (from rev 2604, trunk/src/main/resources/application-config-report.properties) =================================================================== --- trunk/src/main/resources/config-report.properties (rev 0) +++ trunk/src/main/resources/config-report.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -0,0 +1,54 @@ +### +# #%L +# Nuiton Utils :: Nuiton Maven Report Plugin +# +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2012 CodeLutin +# %% +# 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 Lesser Public License for more details. +# +# 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>. +# #L% +### +report.title=Configuration +report.description=Provides details of configuration options useable on the project. +report.overview.title=Overview +report.overview.text=This report summarizes all configuration options useable on the project. +report.detail.text.noConfig=No configuration found in class-path. +report.config.name=Name of configuration +report.noDefaultValue=No default value +report.config.description=Description +report.config.nbOptions=Number of options +report.config.nbActions=Number of actions +report.config.option.key=Key +report.config.option.description=Description +report.config.option.type=Type +report.config.option.defaultValue=Default Value +report.config.option.final=Can be modified +report.config.option.transient=Can be saved +report.config.option.detail=Details of option +report.overview.more.information=More information about ApplicationConfig +report.true=Yes +report.false=No +report.back.options.table=Back to options table +report.detail.title=Detail of configurations +report.detail.text=We give details of each configuration of the project +report.detail.configuration.title=Configuration +report.detail.options.title=Configuration options +report.detail.actions.title=Configuration actions +report.detail.options.noOptions=No option found for this configuration +report.detail.actions.noActions=No action found for this configuration + + Copied: trunk/src/main/resources/config-report_en.properties (from rev 2604, trunk/src/main/resources/application-config-report_en.properties) =================================================================== --- trunk/src/main/resources/config-report_en.properties (rev 0) +++ trunk/src/main/resources/config-report_en.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -0,0 +1,24 @@ +### +# #%L +# Nuiton Utils :: Nuiton Maven Report Plugin +# +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2012 CodeLutin +# %% +# 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 Lesser Public License for more details. +# +# 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>. +# #L% +### Copied: trunk/src/main/resources/config-report_fr.properties (from rev 2604, trunk/src/main/resources/application-config-report_fr.properties) =================================================================== --- trunk/src/main/resources/config-report_fr.properties (rev 0) +++ trunk/src/main/resources/config-report_fr.properties 2014-06-01 13:36:37 UTC (rev 2605) @@ -0,0 +1,52 @@ +### +# #%L +# Nuiton Utils :: Nuiton Maven Report Plugin +# +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2012 CodeLutin +# %% +# 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 Lesser Public License for more details. +# +# 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>. +# #L% +### +report.title=Configuration +report.description=Fournit des informations sur les configurations utilisables dans le projet. +report.overview.title=Pr\u00E9ambule +report.overview.text=Ce rapport d\u00E9crit les configurations utilisables dans ce projet. +report.detail.text.noConfig=Aucune configuration trouv\u00E9e dans le class-path. +report.config.option.key=Clef +report.noDefaultValue=Pas de valeur par d\u00E9faut +report.config.option.description=Description +report.config.option.type=Type +report.config.option.defaultValue=Valeur par d\u00E9faut +report.config.option.final=Option modifiable +report.config.option.transient=Option sauvegardable +report.config.name=Nom de la configuration +report.config.description=Description +report.config.nbOptions=Nombre d'options +report.config.nbActions=Nombre d'actions +report.config.option.detail=D\u00E9tails de l'option +report.back.options.table=Retour sur la table des options +report.overview.more.information=Pour plus d'informations sur ApplicationConfig +report.true=Oui +report.false=Non +report.detail.title=D\u00E9tail des configurations +report.detail.text=On d\u00E9taille ici une par une les configurations d\u00E9finies pour le projet +report.detail.configuration.title=Configuration +report.detail.options.title=Options de la configuration +report.detail.actions.title=Actions de la configuration +report.detail.options.noOptions=Aucune option d\u00E9finie pour cette configuration +report.detail.actions.noActions=Aucune action d\u00E9finie pour cette configuration \ No newline at end of file Modified: trunk/src/site/apt/index.apt =================================================================== --- trunk/src/site/apt/index.apt 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/site/apt/index.apt 2014-06-01 13:36:37 UTC (rev 2605) @@ -39,18 +39,18 @@ Voici quelques liens sur le nouveau projet: - * {{{http://svn.nuiton.org/svn/nuiton-maven-report-plugin}svn}} + * {{{http://svn.nuiton.org/nuiton-maven-report-plugin}svn}} - * {{{http://nuiton.org/projects/nuiton-maven-report-plugin}forge}} + * {{{http://forge.nuiton.org/projects/nuiton-maven-report-plugin}forge}} - * {{{http://maven-site.nuiton.org/nuiton-maven-report-plugin}site}} + * {{{http://doc.nuiton.org/nuiton-maven-report-plugin}site}} [] Il faut alors utiliser cet artefact (<org.nuiton:nuiton-maven-report-plugin>). La dernière version stable dans nuiton-utils est la 2.7; vous pouvez dès à - présent utiliser la version 3.0-alpha-1 de nuiton-csv. + présent utiliser la version 3.0. Pour plus de détails sur les changements importants entre chaque version, vous pouvez consulter les {{{./versions.html}Notes de versions}}. Modified: trunk/src/site/apt/usage.apt.vm =================================================================== --- trunk/src/site/apt/usage.apt.vm 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/site/apt/usage.apt.vm 2014-06-01 13:36:37 UTC (rev 2605) @@ -40,7 +40,7 @@ <plugins> <plugin> <groupId>org.nuiton</groupId> - <artifactId>nuiton-util-maven-report-plugin</artifactId> + <artifactId>nuiton-maven-report-plugin</artifactId> <version>${project.version}</version> <reportSets> <reportSet> Modified: trunk/src/site/apt/versions.apt =================================================================== --- trunk/src/site/apt/versions.apt 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/site/apt/versions.apt 2014-06-01 13:36:37 UTC (rev 2605) @@ -30,4 +30,4 @@ Utilisation de la version 3.0 - * Pas de migration pour le moment. \ No newline at end of file + * Requière l'utilisation de maven 3.0. \ No newline at end of file Modified: trunk/src/site/site_fr.xml =================================================================== --- trunk/src/site/site_fr.xml 2014-02-13 16:42:52 UTC (rev 2604) +++ trunk/src/site/site_fr.xml 2014-06-01 13:36:37 UTC (rev 2605) @@ -25,7 +25,9 @@ --> -<project name="${project.name}"> +<project name="${project.name}" xmlns="http://maven.apache.org/DECORATION/1.4.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.4.0 http://maven.apache.org/xsd/decoration-1.4.0.xsd"> <skin> <groupId>org.apache.maven.skins</groupId>
participants (1)
-
tchemit@users.nuiton.org