svn commit: r1145947 - in /maven/plugins/trunk/maven-site-plugin/src: it/site-skip/ it/site-skip/site/ it/site-skip/skip-site-deploy/ it/site-skip/skip-site/ main/java/org/apache/maven/plugins/site/

2011-07-13 Thread ltheussl
Author: ltheussl
Date: Wed Jul 13 10:17:35 2011
New Revision: 1145947

URL: http://svn.apache.org/viewvc?rev=1145947view=rev
Log:
[MSITE-367] [MSITE-541] add skip and skipDeploy options

Added:
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site/
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/

maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site/pom.xml
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/verify.bsh
Modified:

maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java

maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/SiteMojo.java

Added: maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties?rev=1145947view=auto
==
--- maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties 
(added)
+++ maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties 
Wed Jul 13 10:17:35 2011
@@ -0,0 +1,2 @@
+invoker.goals.1 = clean
+invoker.goals.2 = site:site site:deploy site:stage site:stage-deploy

Added: maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml?rev=1145947view=auto
==
--- maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml (added)
+++ maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml Wed Jul 13 
10:17:35 2011
@@ -0,0 +1,38 @@
+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;
+  modelVersion4.0.0/modelVersion
+
+  groupIdtest-site-skip/groupId
+  artifactIdtop/artifactId
+  version1.0-SNAPSHOT/version
+  packagingpom/packaging
+  nameTop/name
+
+  distributionManagement
+site
+  idsite/id
+  urlfile:///@project.build.directory@/it/site-skip/deployed//url
+/site
+  /distributionManagement
+
+  build
+pluginManagement
+  plugins
+plugin
+  artifactIdmaven-site-plugin/artifactId
+  version@project.version@/version
+  configuration
+generateReportsfalse/generateReports
+  /configuration
+/plugin
+  /plugins
+/pluginManagement
+  /build
+
+  modules
+modulesite/module
+moduleskip-site/module
+moduleskip-site-deploy/module
+  /modules
+
+/project

Added: maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml?rev=1145947view=auto
==
--- maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml (added)
+++ maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml Wed Jul 
13 10:17:35 2011
@@ -0,0 +1,15 @@
+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;
+  modelVersion4.0.0/modelVersion
+
+  parent
+groupIdtest-site-skip/groupId
+artifactIdtop/artifactId
+version1.0-SNAPSHOT/version
+  /parent
+
+  artifactIdsite/artifactId
+  packagingpom/packaging
+  nameSite/name
+
+/project

Added: 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml?rev=1145947view=auto
==
--- 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml 
(added)
+++ 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml 
Wed Jul 13 10:17:35 2011
@@ -0,0 +1,27 @@
+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;
+  modelVersion4.0.0/modelVersion
+
+  parent
+groupIdtest-site-skip/groupId
+artifactIdtop/artifactId
+version1.0-SNAPSHOT/version
+  /parent
+
+  

svn commit: r1145949 - in /maven/plugins/branches/maven-site-plugin-3.x: ./ src/it/site-skip/ src/it/site-skip/site/ src/it/site-skip/skip-site-deploy/ src/it/site-skip/skip-site/ src/main/java/org/ap

2011-07-13 Thread ltheussl
Author: ltheussl
Date: Wed Jul 13 10:26:49 2011
New Revision: 1145949

URL: http://svn.apache.org/viewvc?rev=1145949view=rev
Log:
[MSITE-367] [MSITE-541] add skip and skipDeploy options. Merge r1145947 from 
trunk.

Added:
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/
  - copied from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/

maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/invoker.properties
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/invoker.properties
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/pom.xml
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/pom.xml
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/site/
  - copied from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/site/pom.xml
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/site/pom.xml
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/skip-site/
  - copied from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site/

maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/skip-site-deploy/
  - copied from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/

maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/skip-site-deploy/pom.xml
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site-deploy/pom.xml

maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/skip-site/pom.xml
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/skip-site/pom.xml
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-skip/verify.bsh
  - copied unchanged from r1145947, 
maven/plugins/trunk/maven-site-plugin/src/it/site-skip/verify.bsh
Modified:
maven/plugins/branches/maven-site-plugin-3.x/   (props changed)

maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java

maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/SiteMojo.java

Propchange: maven/plugins/branches/maven-site-plugin-3.x/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Jul 13 10:26:49 2011
@@ -1 +1 @@
-/maven/plugins/trunk/maven-site-plugin:801155,801171,801470,806898-806906,807943-808180,809252,810298,884137,886844,886847,890094,890124,891014,891688,920027,920041,942622,943455,944145,950463,956681,984466,984960,984991,984996,1029307,1033379,1037476,1039137,1039143,1039748-1039749,1049020,1051139-1051449,1055019,1055033,1055047,1055089,1060289,1063639,1064626,1065576,1065582,1066038,1067103,1067120,1070079-1070080,1070100,1070104,1074118,1075018,1075782,1075810,1075995,1076167,1076195,1077911,1077924,1078235,1079474,1079529,1079698,1080781,1081676,1081837,1081887,1082091,1082242,1082274,1082877,1083147,1083251,1083473,1084564,1086313,1086338-1086339,1086533,1087455,1088584,1089802,1089852,1091331,1098168,1098170,1099591,1126420,1126918-1126945,1132936,1145546,114
+/maven/plugins/trunk/maven-site-plugin:801155,801171,801470,806898-806906,807943-808180,809252,810298,884137,886844,886847,890094,890124,891014,891688,920027,920041,942622,943455,944145,950463,956681,984466,984960,984991,984996,1029307,1033379,1037476,1039137,1039143,1039748-1039749,1049020,1051139-1051449,1055019,1055033,1055047,1055089,1060289,1063639,1064626,1065576,1065582,1066038,1067103,1067120,1070079-1070080,1070100,1070104,1074118,1075018,1075782,1075810,1075995,1076167,1076195,1077911,1077924,1078235,1079474,1079529,1079698,1080781,1081676,1081837,1081887,1082091,1082242,1082274,1082877,1083147,1083251,1083473,1084564,1086313,1086338-1086339,1086533,1087455,1088584,1089802,1089852,1091331,1098168,1098170,1099591,1126420,1126918-1126945,1132936,1145546,114,1145947

Modified: 
maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java?rev=1145949r1=1145948r2=1145949view=diff
==
--- 
maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java
 (original)
+++ 
maven/plugins/branches/maven-site-plugin-3.x/src/main/java/org/apache/maven/plugins/site/AbstractDeployMojo.java
 Wed Jul 13 10:26:49 2011
@@ -115,6 +115,14 @@ public abstract class AbstractDeployMojo
 private String chmodOptions;
 
 /**
+ * Set this to 'true' to skip site deployment.
+ *
+ 

svn commit: r1146397 [2/2] - in /maven/plugins/branches/maven-site-plugin-3.x/src/it: MSITE-159/ MSITE-265/ MSITE-304/ MSITE-312/ MSITE-322/ MSITE-354/ MSITE-456/ MSITE-458/ MSITE-484/ MSITE-512/ MSIT

2011-07-13 Thread hboutemy
Modified: 
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-stage-deploy/verify.bsh
URL: 
http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/src/it/site-stage-deploy/verify.bsh?rev=1146397r1=1146396r2=1146397view=diff
==
--- 
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-stage-deploy/verify.bsh
 (original)
+++ 
maven/plugins/branches/maven-site-plugin-3.x/src/it/site-stage-deploy/verify.bsh
 Wed Jul 13 20:29:52 2011
@@ -25,7 +25,7 @@ boolean result = true;
 
 try
 {
-final File deployDirectory = new File ( basedir, deploy );
+final File deployDirectory = new File( basedir, deploy );
 if ( !deployDirectory.exists() || !deployDirectory.isDirectory() )
 {
 System.err.println( deployDirectory is missing or not a directory. );
@@ -33,7 +33,7 @@ try
 }
 
 // junk directory (aggregator)
-File junkDirectory = new File ( deployDirectory, junk );
+File junkDirectory = new File( deployDirectory, junk );
 if ( !junkDirectory.exists() || !junkDirectory.isDirectory() )
 {
 System.err.println( junkDirectory is missing or not a directory. );
@@ -41,7 +41,7 @@ try
 }
 
 // plugins directory
-File pluginsDirectory = new File ( deployDirectory, plugins );
+File pluginsDirectory = new File( deployDirectory, plugins );
 if ( !pluginsDirectory.exists() || !pluginsDirectory.isDirectory() )
 {
 System.err.println( deploy pluginsDirectory is missing or not a 
directory. );
@@ -49,7 +49,7 @@ try
 }
 
 // plugin
-File mavenRocksDirectory = new File ( pluginsDirectory, 
maven-rocks-plugin );
+File mavenRocksDirectory = new File( pluginsDirectory, 
maven-rocks-plugin );
 if ( !mavenRocksDirectory.exists() || !mavenRocksDirectory.isDirectory() )
 {
 System.err.println( deploy mavenRocksDirectory is missing or not a 
directory. );
@@ -58,7 +58,7 @@ try
 
 // STAGING
 
-final File stageDirectory = new File ( basedir, target/staging );
+final File stageDirectory = new File( basedir, target/staging );
 if ( !stageDirectory.exists() || !stageDirectory.isDirectory() )
 {
 System.err.println( stageDirectory is missing or not a directory. );
@@ -66,7 +66,7 @@ try
 }
 
 // plugins directory
-pluginsDirectory = new File ( stageDirectory, plugins );
+pluginsDirectory = new File( stageDirectory, plugins );
 if ( !pluginsDirectory.exists() || !pluginsDirectory.isDirectory() )
 {
 System.err.println( staging pluginsDirectory is missing or not a 
directory. );
@@ -74,7 +74,7 @@ try
 }
 
 // plugin
-mavenRocksDirectory = new File ( pluginsDirectory, maven-rocks-plugin );
+mavenRocksDirectory = new File( pluginsDirectory, maven-rocks-plugin );
 if ( !mavenRocksDirectory.exists() || !mavenRocksDirectory.isDirectory() )
 {
 System.err.println( staging mavenRocksDirectory is missing or not a 
directory. );
@@ -83,7 +83,7 @@ try
 
 // STAGE DEPLOY
 
-final File stageDeployDirectory = new File ( basedir, deploy/staging );
+final File stageDeployDirectory = new File( basedir, deploy/staging );
 if ( !stageDeployDirectory.exists() || !stageDeployDirectory.isDirectory() 
)
 {
 System.err.println( stageDeployDirectory is missing or not a 
directory. );
@@ -91,7 +91,7 @@ try
 }
 
 // plugins directory
-pluginsDirectory = new File ( stageDeployDirectory, plugins );
+pluginsDirectory = new File( stageDeployDirectory, plugins );
 if ( !pluginsDirectory.exists() || !pluginsDirectory.isDirectory() )
 {
 System.err.println( stage deploy pluginsDirectory is missing or not a 
directory. );
@@ -99,14 +99,14 @@ try
 }
 
 // plugin
-mavenRocksDirectory = new File ( pluginsDirectory, maven-rocks-plugin );
+mavenRocksDirectory = new File( pluginsDirectory, maven-rocks-plugin );
 if ( !mavenRocksDirectory.exists() || !mavenRocksDirectory.isDirectory() )
 {
 System.err.println( stage deploy mavenRocksDirectory is missing or 
not a directory. );
 return false;
 }
 }
-catch( IOException e )
+catch ( IOException e )
 {
 e.printStackTrace();
 result = false;

Modified: 
maven/plugins/branches/maven-site-plugin-3.x/src/it/surefire-report/verify.groovy
URL: 
http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/src/it/surefire-report/verify.groovy?rev=1146397r1=1146396r2=1146397view=diff
==
--- 
maven/plugins/branches/maven-site-plugin-3.x/src/it/surefire-report/verify.groovy
 (original)
+++ 
maven/plugins/branches/maven-site-plugin-3.x/src/it/surefire-report/verify.groovy
 Wed Jul 13 20:29:52 2011
@@ -17,15 +17,15 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-assert new File(basedir, 

svn commit: r1146478 - /maven/maven-3/trunk/src/site/site.xml

2011-07-13 Thread hboutemy
Author: hboutemy
Date: Wed Jul 13 21:05:42 2011
New Revision: 1146478

URL: http://svn.apache.org/viewvc?rev=1146478view=rev
Log:
added development menu

Modified:
maven/maven-3/trunk/src/site/site.xml

Modified: maven/maven-3/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/maven-3/trunk/src/site/site.xml?rev=1146478r1=1146477r2=1146478view=diff
==
--- maven/maven-3/trunk/src/site/site.xml (original)
+++ maven/maven-3/trunk/src/site/site.xml Wed Jul 13 21:05:42 2011
@@ -28,6 +28,11 @@ under the License.
   !--item name=FAQ href=faq.html/--
 /menu
 
+menu name=Development
+  item name=Maven Developer Centre href=/developers/index.html/
+  item name=Maven Core ITs href=/core-its/index.html/
+/menu
+
 menu ref=modules/
 menu ref=reports/
   /body




svn commit: r1146486 - in /maven/site/trunk/src/site/apt/guides/development: guide-building-m2.apt guide-m2-development.apt

2011-07-13 Thread hboutemy
Author: hboutemy
Date: Wed Jul 13 21:19:24 2011
New Revision: 1146486

URL: http://svn.apache.org/viewvc?rev=1146486view=rev
Log:
added core ITs link

Modified:
maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt
maven/site/trunk/src/site/apt/guides/development/guide-m2-development.apt

Modified: maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt?rev=1146486r1=1146485r2=1146486view=diff
==
--- maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt 
(original)
+++ maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt Wed 
Jul 13 21:19:24 2011
@@ -84,31 +84,33 @@ svn: Can't open file 'XXX': The system c
 
   Other modules you might be interested in related to Maven development are:
 
-* plugins/trunk - The sources of the Maven plugins. These can be 
individually installed, or built together.
+* core-integration-testing/trunk - {{{/core-its/}Maven Core 
Integration Tests}}, to deeply test your Maven build.
 
-* plugin-tools/trunk - Set of tools for Maven plugins like test 
harness.
+* plugins/trunk - The sources of the {{{/plugins/}Maven plugins}}. 
These can be individually installed, or built together.
+
+* plugin-tools/trunk - {{{/plugin-tools/}Set of tools for Maven 
plugins}} like test harness.
 
 * release/trunk - Release manager and plugin.
 
 * site/trunk - The Maven website.
 
-* skins/trunk - Skins for generated site used by site plugin.
+* skins/trunk - {{{/skins/}Skins}} for generated site used by site 
plugin.
 
 * Some Maven sub projects
 
-  * wagon/trunk - Maven Wagon, used by the artifact code and others 
for providing the transport layer to
+  * wagon/trunk - {{{/wagon/}Maven Wagon}}, used by the artifact 
code and others for providing the transport layer to
 get and put artifacts in a repository.
 
-  * scm/trunk - Maven SCM, a generic API to communicate with various 
different SCM providers, used by
+  * scm/trunk - {{{/scm/}Maven SCM}}, a generic API to communicate 
with various different SCM providers, used by
 Continuum and the release and SCM plugins.
 
-  * doxia/trunk - The Doxia site generation library used by several 
report plugins and site plugin.
+  * doxia/trunk - The {{{/doxia/}Doxia}} site generation library 
used by several report plugins and site plugin.
 
-  * surefire/trunk - The Surefire test runner.
+  * surefire/trunk - The {{/surefire/}Surefire}} test runner.
 
   []
 
-* shared/trunk - Collection of shared libraries like file/path 
handling.
+* shared/trunk - {{{/shared/}Collection of shared libraries}} like 
file/path handling.
 
 * sandbox/trunk - Sandbox codes.
 

Modified: 
maven/site/trunk/src/site/apt/guides/development/guide-m2-development.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/development/guide-m2-development.apt?rev=1146486r1=1146485r2=1146486view=diff
==
--- maven/site/trunk/src/site/apt/guides/development/guide-m2-development.apt 
(original)
+++ maven/site/trunk/src/site/apt/guides/development/guide-m2-development.apt 
Wed Jul 13 21:19:24 2011
@@ -28,10 +28,10 @@
 ~~ NOTE: For help with the syntax of this file, see:
 ~~ http://maven.apache.org/doxia/references/apt-format.html
 
-Developing Maven 2
+Developing Maven
 
- This document describes how to get started into developing Maven 2 itself. 
There is a separate page describing how
- to {{{./guide-building-m2.html}building Maven 2}}.
+ This document describes how to get started into developing Maven itself. 
There is a separate page describing how
+ to {{{./guide-building-m2.html}building Maven}}.
 
 * Finding some work to do
 
@@ -133,13 +133,13 @@ And remember, your contributions are alw
 
 * Related Projects
 
- Maven 2 has a few dependencies on other projects.
+ Maven has a few dependencies on other projects.
 
  * Plexus
 
  Plexus is a full-fledged container supporting different kinds of component 
lifecycles. It's native lifecycle
  is like any other modern IoC container, using field injection of both 
requirements and configuration. All
- core Maven 2 functionality are Plexus components.
+ core Maven functionality are Plexus components.
 
  You can {{{http://plexus.codehaus.org}read more about Plexus}}.
 




svn commit: r1146487 - in /maven/plugins/trunk/maven-javadoc-plugin/src/main/resources: javadoc-report_nl.properties test-javadoc-report_nl.properties

2011-07-13 Thread rfscholte
Author: rfscholte
Date: Wed Jul 13 21:20:02 2011
New Revision: 1146487

URL: http://svn.apache.org/viewvc?rev=1146487view=rev
Log:
Fix MJAVADOC-321: add dutch resource bundles

Added:

maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/javadoc-report_nl.properties

maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/test-javadoc-report_nl.properties

Added: 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/javadoc-report_nl.properties
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/javadoc-report_nl.properties?rev=1146487view=auto
==
--- 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/javadoc-report_nl.properties
 (added)
+++ 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/javadoc-report_nl.properties
 Wed Jul 13 21:20:02 2011
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# License); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+report.javadoc.name=JavaDocs
+report.javadoc.description=JavaDoc API documentatie.

Added: 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/test-javadoc-report_nl.properties
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/test-javadoc-report_nl.properties?rev=1146487view=auto
==
--- 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/test-javadoc-report_nl.properties
 (added)
+++ 
maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/test-javadoc-report_nl.properties
 Wed Jul 13 21:20:02 2011
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# License); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+report.test-javadoc.name=Test JavaDocs
+report.test-javadoc.description=Test JavaDoc API documentatie.