Author: khmarbaise
Date: Sat Jun 18 14:59:26 2016
New Revision: 1749064

URL: http://svn.apache.org/viewvc?rev=1749064&view=rev
Log:
Use https instead of http.

Modified:
    maven/site/trunk/content/apt/developers/release/parent-pom-release.apt
    maven/site/trunk/content/apt/guides/introduction/introduction-to-the-pom.apt
    maven/site/trunk/content/apt/guides/mini/guide-central-repository-upload.apt
    maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt
    
maven/site/trunk/content/apt/plugin-developers/cookbook/add-build-time-to-manifest.apt
    
maven/site/trunk/content/apt/plugin-developers/cookbook/add-svn-revision-to-manifest.apt
    
maven/site/trunk/content/apt/plugin-developers/cookbook/attach-source-javadoc-artifacts.apt
    
maven/site/trunk/content/apt/plugin-developers/cookbook/generate-assembly.apt
    maven/site/trunk/content/apt/plugin-developers/plugin-testing.apt
    maven/site/trunk/content/apt/plugins/localization.apt

Modified: maven/site/trunk/content/apt/developers/release/parent-pom-release.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/developers/release/parent-pom-release.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- maven/site/trunk/content/apt/developers/release/parent-pom-release.apt 
(original)
+++ maven/site/trunk/content/apt/developers/release/parent-pom-release.apt Sat 
Jun 18 14:59:26 2016
@@ -93,7 +93,7 @@ mvn -f site-pom.xml scm-publish:publish-
 Hi,
 
 Changes since the last release:
-http://svn.apache.org/viewvc/maven/pom/tags/<TAG>/pom.xml?r1=HEAD&r2=<REVISION-OF-LAST-RELEASE>&diff_format=h
+https://svn.apache.org/viewvc/maven/pom/tags/<TAG>/pom.xml?r1=HEAD&r2=<REVISION-OF-LAST-RELEASE>&diff_format=h
 
 Staging repo:
 ...

Modified: 
maven/site/trunk/content/apt/guides/introduction/introduction-to-the-pom.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/introduction/introduction-to-the-pom.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/guides/introduction/introduction-to-the-pom.apt 
(original)
+++ 
maven/site/trunk/content/apt/guides/introduction/introduction-to-the-pom.apt 
Sat Jun 18 14:59:26 2016
@@ -89,11 +89,11 @@ Introduction to the POM
  The Super POM is Maven's default POM. All POMs extend the Super POM unless 
explicitly set, meaning the configuration specified
  in the Super POM is inherited by the POMs you created for your projects. The 
snippet below is the Super POM for Maven 2.0.x.
 
-%{snippet|id=superpom|url=http://svn.apache.org/repos/asf/maven/components/tags/maven-2.0/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml}
+%{snippet|id=superpom|url=https://svn.apache.org/repos/asf/maven/components/tags/maven-2.0/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml}
 
  The snippet below is the Super POM for Maven 2.1.x.
 
-%{snippet|id=superpom|url=http://svn.apache.org/repos/asf/maven/components/tags/maven-2.1.0/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml}
+%{snippet|id=superpom|url=https://svn.apache.org/repos/asf/maven/components/tags/maven-2.1.0/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml}
 
  {{{./introduction-to-the-pom.html}[top]}}
 

Modified: 
maven/site/trunk/content/apt/guides/mini/guide-central-repository-upload.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/mini/guide-central-repository-upload.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/guides/mini/guide-central-repository-upload.apt 
(original)
+++ 
maven/site/trunk/content/apt/guides/mini/guide-central-repository-upload.apt 
Sat Jun 18 14:59:26 2016
@@ -84,7 +84,7 @@ Guide to uploading artifacts to the Cent
   </licenses>
 
   <scm>
-    <url>http://svn.apache.org/viewvc/maven</url>
+    <url>https://svn.apache.org/viewvc/maven</url>
   </scm>
 
   <dependencies>
@@ -176,4 +176,4 @@ Guide to uploading artifacts to the Cent
  mechanism currently for validating the incoming data via the rsync, and this 
leads to bad metadata that affects everyone. 
 
  The aggregation of projects into single larger feeds allows us to sync faster 
and more often, and ensuring these locations
- perform sufficient checks increases the quality of metadata for everyone.
\ No newline at end of file
+ perform sufficient checks increases the quality of metadata for everyone.

Modified: maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt (original)
+++ maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt Sat Jun 18 
14:59:26 2016
@@ -46,7 +46,7 @@ Guide to using Modello
 
  A typical modello model looks like the following:
 
-%{snippet|id=modello-model|url=http://svn.apache.org/repos/asf/maven/archetype/trunk/archetype-common/src/main/mdo/archetype.mdo}
+%{snippet|id=modello-model|url=https://svn.apache.org/repos/asf/maven/archetype/trunk/archetype-common/src/main/mdo/archetype.mdo}
 
  To utilize Modello you would configure the <<<maven-modello-plugin>>> 
something like the following where you want
  to generate the Java sources for the model, the xpp3 serialization code and 
the xpp3 deserialization code:

Modified: 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-build-time-to-manifest.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/cookbook/add-build-time-to-manifest.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-build-time-to-manifest.apt
 (original)
+++ 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-build-time-to-manifest.apt
 Sat Jun 18 14:59:26 2016
@@ -71,7 +71,7 @@ Build-Time: ${build.time}
   The value $\{build.time\} from the <<<MANIFEST.MF>>> will be filtering by 
Maven due to the \<filtering\> element.
   The value is taken from the file 
<<<$\{basedir\}/target/filter.properties>>>, listed by the \<filter\> element, 
i.e.
 
-%{snippet|id=pom|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
+%{snippet|id=pom|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
 
 ** Configuring Maven Antrun Plugin
 
@@ -79,13 +79,13 @@ Build-Time: ${build.time}
   {{{http://ant.apache.org/manual/CoreTasks/tstamp.html}\<tstamp\>}} and
   {{{http://ant.apache.org/manual/CoreTasks/echo.html}\<echo\>}}.
 
-%{snippet|id=antrun|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
+%{snippet|id=antrun|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
 
 ** Configuring Maven Jar Plugin
 
   The last configuration is to set the <<<defaultManifestFile>>> to <<<true>>> 
to enable it.
 
-%{snippet|id=jar|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
+%{snippet|id=jar|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time/pom.xml}
 
 ** Running Maven
 
@@ -101,7 +101,7 @@ mvn package
 
 * Resources
 
-  * Source code: 
{{{http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time}http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time}}
+  * Source code: 
{{{https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time}https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-build-time}}
 
   * {{{../../plugins/maven-antrun-plugin/} Maven Antrun Plugin}}
 

Modified: 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-svn-revision-to-manifest.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/cookbook/add-svn-revision-to-manifest.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-svn-revision-to-manifest.apt
 (original)
+++ 
maven/site/trunk/content/apt/plugin-developers/cookbook/add-svn-revision-to-manifest.apt
 Sat Jun 18 14:59:26 2016
@@ -62,13 +62,13 @@ SCM-Revision: 613393
 
   We configure this plugin as suggested in the 
{{{http://www.mojohaus.org/buildnumber-maven-plugin/usage.html}Mojo Buildnumber 
Plugin usage}} page.
 
-%{snippet|id=buildnumber|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision/pom.xml}
+%{snippet|id=buildnumber|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision/pom.xml}
 
 ** Configuring Maven Jar Plugin
 
   The last configuration is to customize the default Manifest with a new entry 
for the SCM revision.
 
-%{snippet|id=jar|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision/pom.xml}
+%{snippet|id=jar|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision/pom.xml}
 
 ** Running Maven
 
@@ -86,7 +86,7 @@ mvn package
 
 * Resources
 
-  * Source code: 
{{{http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision}http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision}}
+  * Source code: 
{{{https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision}https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-svn-revision}}
 
   * {{{../../plugins/maven-jar-plugin/} Maven Jar Plugin}}
 

Modified: 
maven/site/trunk/content/apt/plugin-developers/cookbook/attach-source-javadoc-artifacts.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/cookbook/attach-source-javadoc-artifacts.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/plugin-developers/cookbook/attach-source-javadoc-artifacts.apt
 (original)
+++ 
maven/site/trunk/content/apt/plugin-developers/cookbook/attach-source-javadoc-artifacts.apt
 Sat Jun 18 14:59:26 2016
@@ -64,13 +64,13 @@ attach-source-javadoc
 
   We execute the 
<<<{{{../../plugins/maven-source-plugin/jar-mojo.html}source:jar}}>>> goal from 
the source plugin during the <<<package>>> phase.
 
-%{snippet|id=source|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc/pom.xml}
+%{snippet|id=source|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc/pom.xml}
 
 ** Configuring Maven Javadoc Plugin
 
   Same thing for the 
<<<{{{../../plugins/maven-javadoc-plugin/jar-mojo.html}javadoc:jar}}>>> goal 
from the javadoc plugin.
 
-%{snippet|id=javadoc|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc/pom.xml}
+%{snippet|id=javadoc|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc/pom.xml}
 
 ** Running Maven
 
@@ -86,7 +86,7 @@ mvn package
 
 * Resources
 
-  * Source code: 
{{{http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc}http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc}}
+  * Source code: 
{{{https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc}https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/attach-source-javadoc}}
 
   * {{{../../plugins/maven-javadoc-plugin/} Maven Javadoc Plugin}}
 

Modified: 
maven/site/trunk/content/apt/plugin-developers/cookbook/generate-assembly.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/cookbook/generate-assembly.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- 
maven/site/trunk/content/apt/plugin-developers/cookbook/generate-assembly.apt 
(original)
+++ 
maven/site/trunk/content/apt/plugin-developers/cookbook/generate-assembly.apt 
Sat Jun 18 14:59:26 2016
@@ -64,18 +64,18 @@ attach-source-javadoc
   To generate an assembly, we need to configure an assembly descriptor called 
<<<bin.xml>>> in the <<<src/assembly>>> directory.
   Firstly, we specify the wanted formats, i.e.
 
-%{snippet|id=formats|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/src/assembly/bin.xml}
+%{snippet|id=formats|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/src/assembly/bin.xml}
 
   And the wanted files sets, i.e.
 
-%{snippet|id=fileSets|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/src/assembly/bin.xml}
+%{snippet|id=fileSets|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/src/assembly/bin.xml}
 
 ** Configuring Maven Assembly Plugin
 
   We execute the 
<<<{{{../../plugins/maven-assembly-plugin/single-mojo.html}assembly:single}}>>> 
goal from the Assembly plugin during the
   <<<package>>> phase.
 
-%{snippet|id=assembly|url=http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/pom.xml}
+%{snippet|id=assembly|url=https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly/pom.xml}
 
 ** Running Maven
 
@@ -87,7 +87,7 @@ mvn package
 
 * Resources
 
-  * Source code: 
{{{http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly}http://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly}}
+  * Source code: 
{{{https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly}https://svn.apache.org/repos/asf/maven/sandbox/trunk/site/cookbook/generate-assembly}}
 
   * {{{../../plugins/maven-assembly-plugin/}Maven Assembly Plugin }}
 

Modified: maven/site/trunk/content/apt/plugin-developers/plugin-testing.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/plugin-testing.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- maven/site/trunk/content/apt/plugin-developers/plugin-testing.apt (original)
+++ maven/site/trunk/content/apt/plugin-developers/plugin-testing.apt Sat Jun 
18 14:59:26 2016
@@ -176,7 +176,7 @@ public class TrivialMavenVerifierTest ex
          * The verifier also supports beanshell scripts for
          * verification of more complex scenarios. There are
          * plenty of examples in the core-it tests here:
-         * http://svn.apache.org/repos/asf/maven/core-integration-testing/trunk
+         * 
https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk
          */
     }
 +-----+
@@ -189,7 +189,7 @@ public class TrivialMavenVerifierTest ex
  to invoke Maven and to provide some BeanShell/Groovy tests. Tests written in
  this way don't run under JUnit/TestNG; instead, they're run by Maven itself.
 
- You can take a look at the 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-install-plugin/src/it/}maven-install-plugin}}
+ You can take a look at the 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-install-plugin/src/it/}maven-install-plugin}}
  how there are integration tests are written.
 
 +-----+

Modified: maven/site/trunk/content/apt/plugins/localization.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugins/localization.apt?rev=1749064&r1=1749063&r2=1749064&view=diff
==============================================================================
--- maven/site/trunk/content/apt/plugins/localization.apt (original)
+++ maven/site/trunk/content/apt/plugins/localization.apt Sat Jun 18 14:59:26 
2016
@@ -49,31 +49,31 @@ Localization of Plugins
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
 || Plugin              || ca || cs || da || de || es || fr || gl || hu || it 
|| ja || ko || lt || nl || no || pl || pt || pt_BR || ru || sk || sv || tr || 
zh_CN || zn_TW || l10n report                                                   
              || SVN
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Changelog            | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-changelog-plugin/l10n-status.html}l10n report}}  
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-changelog-plugin/src/main/resources/}SVN}}
+| Changelog            | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-changelog-plugin/l10n-status.html}l10n report}}  
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-changelog-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Changes              | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-changes-plugin/l10n-status.html}l10n report}}    
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-changes-plugin/src/main/resources/}SVN}}
+| Changes              | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-changes-plugin/l10n-status.html}l10n report}}    
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-changes-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Checkstyle           | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-checkstyle-plugin/l10n-status.html}l10n report}} 
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/}SVN}}
+| Checkstyle           | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-checkstyle-plugin/l10n-status.html}l10n report}} 
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Dependency           | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-dependency-plugin/l10n-status.html}l10n report}} 
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-dependency-plugin/src/main/resources/}SVN}}
+| Dependency           | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-dependency-plugin/l10n-status.html}l10n report}} 
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-dependency-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| DOAP                 | -   | -   | -   | OK  | OK  | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | -   | -   | -    
  | -      | {{{/plugins/maven-doap-plugin/l10n-status.html}l10n report}}       
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-doap-plugin/src/main/resources/}SVN}}
+| DOAP                 | -   | -   | -   | OK  | OK  | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | -   | -   | -    
  | -      | {{{/plugins/maven-doap-plugin/l10n-status.html}l10n report}}       
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-doap-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Doxia Integration Tools | OK | OK | OK | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | 
{{{/doxia/doxia-tools/doxia-integration-tools/l10n-status.html}l10n report}} | 
{{{http://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/resources/}SVN}}
+| Doxia Integration Tools | OK | OK | OK | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | 
{{{/doxia/doxia-tools/doxia-integration-tools/l10n-status.html}l10n report}} | 
{{{https://svn.apache.org/repos/asf/maven/doxia/doxia-sitetools/trunk/doxia-integration-tools/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Javadoc              | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | OK  | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-javadoc-plugin/l10n-status.html}l10n report}}    
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/}SVN}}
+| Javadoc              | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | OK  | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-javadoc-plugin/l10n-status.html}l10n report}}    
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-javadoc-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| JXR                  | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-jxr-plugin/l10n-status.html}l10n report}}        
          | 
{{{http://svn.apache.org/repos/asf/maven/jxr/trunk/maven-jxr-plugin/src/main/resources/}SVN}}
+| JXR                  | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-jxr-plugin/l10n-status.html}l10n report}}        
          | 
{{{https://svn.apache.org/repos/asf/maven/jxr/trunk/maven-jxr-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| PMD                  | -   | -   | -   | OK  | -   | OK  | -   | -   | OK  | 
-   | -   | -   | OK  | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-pmd-plugin/l10n-status.html}l10n report}}        
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/}SVN}}
+| PMD                  | -   | -   | -   | OK  | -   | OK  | -   | -   | OK  | 
-   | -   | -   | OK  | -   | -   | -   | OK     | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-pmd-plugin/l10n-status.html}l10n report}}        
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pmd-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Plugin               | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-plugin-plugin/l10n-status.html}l10n report}}     
          | 
{{{http://svn.apache.org/repos/asf/maven/plugin-tools/trunk/maven-plugin-plugin/src/main/resources/}SVN}}
+| Plugin               | -   | -   | -   | OK  | -   | OK  | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-plugin-plugin/l10n-status.html}l10n report}}     
          | 
{{{https://svn.apache.org/repos/asf/maven/plugin-tools/trunk/maven-plugin-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Project Info Reports | -   | OK  | -   | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | 
{{{/plugins/maven-project-info-reports-plugin/l10n-status.html}l10n report}} | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-project-info-reports-plugin/src/main/resources/}SVN}}
+| Project Info Reports | -   | OK  | -   | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | 
{{{/plugins/maven-project-info-reports-plugin/l10n-status.html}l10n report}} | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-project-info-reports-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Surefire report      | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-surefire-report-plugin/l10n-status.html}l10n 
report}}      | 
{{{http://svn.apache.org/repos/asf/maven/surefire/trunk/maven-surefire-report-plugin/src/main/resources/}SVN}}
+| Surefire report      | -   | -   | -   | OK  | -   | -   | -   | -   | -   | 
-   | -   | -   | -   | -   | -   | -   | -      | -   | -   | OK  | -   | -    
  | -      | {{{/plugins/maven-surefire-report-plugin/l10n-status.html}l10n 
report}}      | 
{{{https://svn.apache.org/repos/asf/maven/surefire/trunk/maven-surefire-report-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
-| Site                 | OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | {{{/plugins/maven-site-plugin/l10n-status.html}l10n report}}       
          | 
{{{http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-site-plugin/src/main/resources/}SVN}}
+| Site                 | OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK  | 
OK  | OK  | OK  | OK  | OK  | OK  | OK  | OK     | OK  | OK  | OK  | OK  | OK   
  | OK     | {{{/plugins/maven-site-plugin/l10n-status.html}l10n report}}       
          | 
{{{https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-site-plugin/src/main/resources/}SVN}}
 
*----------------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--------+-----+-----+-----+-----+--------+--------+------------------------------------------------------------------------------+------+
 
   Is your favourite plugin missing a localization for your language? Please 
help


Reply via email to