Author: khmarbaise
Date: Sat Jun 18 15:07:46 2016
New Revision: 1749065
URL: http://svn.apache.org/viewvc?rev=1749065&view=rev
Log:
Use https instead of http.
Modified:
maven/site/trunk/content/apt/guides/development/guide-maven-development.apt
maven/site/trunk/content/apt/guides/mini/guide-using-modello.apt
maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
maven/site/trunk/content/apt/plugin-developers/common-bugs.apt
maven/site/trunk/content/apt/plugin-developers/cookbook/plexus-plugin-upgrade.apt
Modified:
maven/site/trunk/content/apt/guides/development/guide-maven-development.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/development/guide-maven-development.apt?rev=1749065&r1=1749064&r2=1749065&view=diff
==============================================================================
--- maven/site/trunk/content/apt/guides/development/guide-maven-development.apt
(original)
+++ maven/site/trunk/content/apt/guides/development/guide-maven-development.apt
Sat Jun 18 15:07:46 2016
@@ -47,7 +47,7 @@ Developing Maven
* Where's the source?
- See
{{{/source-repository.html}http://maven.apache.org/source-repository.html}} for
information.
+ See
{{{/source-repository.html}https://maven.apache.org/source-repository.html}}
for information.
The Maven project uses a Git for some things, and Subversion for others,
and this
page tracks the situation.
@@ -148,14 +148,14 @@ And remember, your contributions are alw
is like any other modern IoC container, using field injection of both
requirements and configuration. All
core Maven functionality are Plexus components.
- You can {{{http://codehaus-plexus.github.io/}read more about Plexus}}.
+ You can {{{https://codehaus-plexus.github.io/}read more about Plexus}}.
* <<Modello>>
Modello is a simple tool for representing an object model and generate code
and resources from the model. Maven is
using Modello to generate all Java objects, XML readers and writers, XML
Schema and HTML documentation.
- You can {{{http://codehaus-plexus.github.io/modello/}read more about
Modello}}.
+ You can {{{https://codehaus-plexus.github.io/modello/}read more about
Modello}}.
* <<Mojo>>
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=1749065&r1=1749064&r2=1749065&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
15:07:46 2016
@@ -29,7 +29,7 @@
Guide to using Modello
- {{{http://codehaus-plexus.github.io/modello/}Modello}} is a tool for
generating resources from a simple model. From a
+ {{{https://codehaus-plexus.github.io/modello/}Modello}} is a tool for
generating resources from a simple model. From a
simple model you can generate things like:
* Java sources
Modified:
maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt?rev=1749065&r1=1749064&r2=1749065&view=diff
==============================================================================
---
maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
(original)
+++
maven/site/trunk/content/apt/guides/plugin/guide-java-plugin-development.apt
Sat Jun 18 15:07:46 2016
@@ -731,9 +731,9 @@ public class MyQueryMojo
[[2]]
{{{http://maven.apache.org/shared/maven-plugin-testing-harness/}Maven Plugin
Testing Harness}}: Testing framework for your Mojos.
- [[3]] {{{http://codehaus-plexus.github.io/}Plexus}}: The IoC container
used by Maven.
+ [[3]] {{{https://codehaus-plexus.github.io/}Plexus}}: The IoC container
used by Maven.
- [[4]] {{{http://codehaus-plexus.github.io/plexus-utils/}Plexus Common
Utilities}}: Set of utilities classes useful for Mojo development.
+ [[4]] {{{https://codehaus-plexus.github.io/plexus-utils/}Plexus Common
Utilities}}: Set of utilities classes useful for Mojo development.
[[5]] {{{http://commons.apache.org/io/}Commons IO}}: Set of utilities
classes useful for file/path handling.
Modified: maven/site/trunk/content/apt/plugin-developers/common-bugs.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/common-bugs.apt?rev=1749065&r1=1749064&r2=1749065&view=diff
==============================================================================
--- maven/site/trunk/content/apt/plugin-developers/common-bugs.apt (original)
+++ maven/site/trunk/content/apt/plugin-developers/common-bugs.apt Sat Jun 18
15:07:46 2016
@@ -103,9 +103,9 @@ writer.write( xmlContent );
+---
To ease the correct processing of XML files, developers are encouraged to use
-
<<<{{{http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/ReaderFactory.html#newXmlReader(java.io.File)}ReaderFactory.newXmlReader()}}>>>
+
<<<{{{https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/ReaderFactory.html#newXmlReader(java.io.File)}ReaderFactory.newXmlReader()}}>>>
and
-
<<<{{{http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/WriterFactory.html#newXmlWriter(java.io.File)}WriterFactory.newXmlWriter()}}>>>
+
<<<{{{https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/WriterFactory.html#newXmlWriter(java.io.File)}WriterFactory.newXmlWriter()}}>>>
from the Plexus Utilities.
* {Converting between URLs and Filesystem Paths}
@@ -186,7 +186,7 @@ File path = new File( new URI( url.toExt
For all these reasons, it is recommended to use
<<<{{{http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html#toFile(java.net.URL)}FileUtils.toFile()}}>>>
from Commons IO or
-
<<<{{{http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/FileUtils.html#toFile(java.net.URL)}FileUtils.toFile()}}>>>
+
<<<{{{https://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/FileUtils.html#toFile(java.net.URL)}FileUtils.toFile()}}>>>
from a recent Plexus Utilities.
* {Handling Strings Case-insensitively}
Modified:
maven/site/trunk/content/apt/plugin-developers/cookbook/plexus-plugin-upgrade.apt
URL:
http://svn.apache.org/viewvc/maven/site/trunk/content/apt/plugin-developers/cookbook/plexus-plugin-upgrade.apt?rev=1749065&r1=1749064&r2=1749065&view=diff
==============================================================================
---
maven/site/trunk/content/apt/plugin-developers/cookbook/plexus-plugin-upgrade.apt
(original)
+++
maven/site/trunk/content/apt/plugin-developers/cookbook/plexus-plugin-upgrade.apt
Sat Jun 18 15:07:46 2016
@@ -32,12 +32,12 @@ Cookbook: How To Upgrade from Plexus Jav
This recipe describes how to upgrade from Plexus Javadoc Tags to Plexus Java
Annotations, in 2 steps:
- [[1]] replace the deprecated
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}},
+ [[1]] replace the deprecated
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}},
which only supports Plexus Javadoc Tags, with its successor:
-
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}},
+
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}},
which support both Plexus Javadoc Tags and Plexus Java Annotations,
- [[2]] update sources with
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/}Java
Annotations for Plexus}}.
+ [[2]] update sources with
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/}Java
Annotations for Plexus}}.
[]
@@ -48,9 +48,9 @@ Cookbook: How To Upgrade from Plexus Jav
*--------------------------------------------------------------------------------------------------------------+--------------+
|| <<Plugin>>
|| <<Version>>
*--------------------------------------------------------------------------------------------------------------+--------------+
-|
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}}
| 1.3.8
+|
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}}
| 1.3.8
*--------------------------------------------------------------------------------------------------------------+--------------+
-|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}}
| 1.5.5
+|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}}
| 1.5.5
*--------------------------------------------------------------------------------------------------------------+--------------+
* Equivalence Table
@@ -58,29 +58,29 @@ Cookbook: How To Upgrade from Plexus Jav
*---------*---------------------------------------------------------------------------------------------------------*--------------*
| || <<plexus-maven-plugin>>
|| <<plexus-component-metadata>>
*---------+---------------------------------------------------------------------------------------------------------+--------------+
-| | {{{http://codehaus-plexus.github.io/plexus-maven-plugin/}project}}
/ |
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}project}}
/
-| |
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/plugin-info.html}plugin
info}} |
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/plugin-info.html}plugin
info}}
+| |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/}project}} /
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/}project}}
/
+| |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/plugin-info.html}plugin
info}} |
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/plugin-info.html}plugin
info}}
*---------+---------------------------------------------------------------------------------------------------------+--------------+
|| latest | 1.3.8
| 1.5.5
*---------+---------------------------------------------------------------------------------------------------------+--------------+
|| phase | process-sources
| process-classes
*---------+---------------------------------------------------------------------------------------------------------+--------------+
-|| goals |
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/descriptor-mojo.html}<<<descriptor>>>}}
|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/generate-metadata-mojo.html}<<<generate-metadata>>>}}
+|| goals |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/descriptor-mojo.html}<<<descriptor>>>}}
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/generate-metadata-mojo.html}<<<generate-metadata>>>}}
*---------+---------------------------------------------------------------------------------------------------------+--------------+
-| |
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/merge-descriptors-mojo.html}<<<merge-descriptors>>>}}
| see <<<staticMetadataDirectory>>> parameter \
+| |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/merge-descriptors-mojo.html}<<<merge-descriptors>>>}}
| see <<<staticMetadataDirectory>>> parameter \
| |
| default:
<<<$\{basedir}/src/main/resources/META-INF/plexus>>>
*---------+---------------------------------------------------------------------------------------------------------+--------------+
-| |
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/test-descriptor-mojo.html}<<<test-descriptor>>>}}
|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/generate-test-metadata-mojo.html}<<<generate-test-metadata>>>}}
+| |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/test-descriptor-mojo.html}<<<test-descriptor>>>}}
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-metadata/generate-test-metadata-mojo.html}<<<generate-test-metadata>>>}}
*---------+---------------------------------------------------------------------------------------------------------+--------------+
-| |
{{{http://codehaus-plexus.github.io/plexus-maven-plugin/test-merge-descriptors-mojo.html}<<<test-merge-descriptors>>>}}
| see <<<testStaticMetadataDirectory>>> parameter \
+| |
{{{https://codehaus-plexus.github.io/plexus-maven-plugin/test-merge-descriptors-mojo.html}<<<test-merge-descriptors>>>}}
| see <<<testStaticMetadataDirectory>>> parameter \
| |
| default:
<<<$\{basedir}/src/test/resources/META-INF/plexus>>>
*---------+---------------------------------------------------------------------------------------------------------+--------------+
|| source annotations | javadoc tags: \
-|| |
| javadoc tags +
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/}<<<plexus-component-annotations>>>}}
Java 5 annotations:\
+|| |
| javadoc tags +
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/}<<<plexus-component-annotations>>>}}
Java 5 annotations:\
|| | <<<@plexus.component>>>, <<<@plexus.requirement>>>,
<<<@plexus.configuration>>> \
-|| |
|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Component.html}<<<@Component>>>}},
-|| |
|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Requirement.html}<<<@Requirement>>>}},
-|| |
|
{{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Configuration.html}<<<@Configuration>>>}},
+|| |
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Component.html}<<<@Component>>>}},
+|| |
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Requirement.html}<<<@Requirement>>>}},
+|| |
|
{{{https://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Configuration.html}<<<@Configuration>>>}},
*---------+---------------------------------------------------------------------------------------------------------+--------------+