Author: tchemit Date: 2010-10-29 15:37:37 +0200 (Fri, 29 Oct 2010) New Revision: 1786 Url: http://nuiton.org/repositories/revision/i18n/1786 Log: do not add headers on THIRD-PARTY.properties + add headers + reformat pom Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties trunk/pom.xml Modified: trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties =================================================================== --- trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties 2010-10-29 08:28:37 UTC (rev 1785) +++ trunk/maven-i18n-plugin/src/it/parsers/withNewKeys/src/main/resources/i18n/parsers-withNewKeys-fr_FR.properties 2010-10-29 13:37:37 UTC (rev 1786) @@ -1,2 +1,26 @@ +### +# #%L +# I18n :: Maven Plugin +# +# $Id$ +# $HeadURL$ +# %% +# Copyright (C) 2007 - 2010 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% +### javaGetter.old.key1=hum1 javaGetter.old.key2=hum2 Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-10-29 08:28:37 UTC (rev 1785) +++ trunk/pom.xml 2010-10-29 13:37:37 UTC (rev 1786) @@ -23,7 +23,9 @@ <http://www.gnu.org/licenses/lgpl-3.0.html>. #L% --> -<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/xsd/maven-4.0.0.xsd"> +<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -227,10 +229,9 @@ <!-- pour un muli module on doit fixer le projectId --> <projectId>i18n</projectId> - <!-- remove this when using mavenpom >= 2.4 --> + <!-- remove this when using mavenpom > 2.4 --> <helperPluginVersion>1.3-SNAPSHOT</helperPluginVersion> - <!-- remove this when using mavenpom >= 2.4 --> <processorVersion>1.0.4-SNAPSHOT</processorVersion> <!--Multilanguage maven-site --> @@ -245,8 +246,27 @@ <!-- Source control management. --> <scm> <connection>scm:svn:http://svn.nuiton.org/svn/i18n/trunk</connection> - <developerConnection>scm:svn:http://svn.nuiton.org/svn/i18n/trunk</developerConnection> + <developerConnection> + scm:svn:http://svn.nuiton.org/svn/i18n/trunk + </developerConnection> <url>http://www.nuiton.org/repositories/browse/i18n/trunk</url> </scm> + <build> + <pluginManagement> + <plugins> + <!-- remove this while using mavenpom > 2.4 --> + <plugin> + <groupId>org.nuiton</groupId> + <artifactId>maven-license-plugin</artifactId> + <configuration> + <excludes> + <exclude>**/THIRD-PARTY.properties</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </project>