You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2015/09/14 19:45:38 UTC

svn commit: r1703009 - in /maven/site/trunk/content: apt/guides/development/ apt/guides/plugin/ apt/plugin-developers/ apt/plugin-developers/cookbook/ markdown/

Author: hboutemy
Date: Mon Sep 14 17:45:37 2015
New Revision: 1703009

URL: http://svn.apache.org/r1703009
Log:
updated Plexus site url

Modified:
    maven/site/trunk/content/apt/guides/development/guide-maven-development.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
    maven/site/trunk/content/markdown/maven-jsr330.md
    maven/site/trunk/content/markdown/maven-logging.md

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=1703009&r1=1703008&r2=1703009&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 Mon Sep 14 17:45:37 2015
@@ -182,7 +182,7 @@ 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://plexus.codehaus.org}read more about Plexus}}.
+ You can {{{http://codehaus-plexus.github.io/}read more about Plexus}}.
 
  * <<Modello>>
 
@@ -209,15 +209,15 @@ And remember, your contributions are alw
  use it. It support scripting tests in BeanShell and Jython and has special "batteries" for writing acceptance and
  functional tests for the web and for testing XML-RPC code.
 
- You can {{{http://maven.apache.org/surefire/}read more about Surefire}}.
+ You can {{{/surefire/}read more about Surefire}}.
 
  ** Maven Doxia
 
  Doxia is Maven's documentation engine. It has a sink and parser API that can be used to plug in support for input
  and output documents.
 
- You can read more about {{{http://maven.apache.org/doxia/}Doxia}} and the currently supported
- {{{http://maven.apache.org/doxia/references/index.html}document formats}}.
+ You can read more about {{{/doxia/}Doxia}} and the currently supported
+ {{{/doxia/references/index.html}document formats}}.
 
 
  ** Maven SCM

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=1703009&r1=1703008&r2=1703009&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 Mon Sep 14 17:45:37 2015
@@ -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://plexus.codehaus.org/}Plexus}}: The IoC container used by Maven.
+    [[3]] {{{http://codehaus-plexus.github.io/}Plexus}}: The IoC container used by Maven.
 
-    [[4]] {{{http://plexus.codehaus.org/plexus-utils/}Plexus Common Utilities}}: Set of utilities classes useful for Mojo development.
+    [[4]] {{{http://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=1703009&r1=1703008&r2=1703009&view=diff
==============================================================================
--- maven/site/trunk/content/apt/plugin-developers/common-bugs.apt (original)
+++ maven/site/trunk/content/apt/plugin-developers/common-bugs.apt Mon Sep 14 17:45:37 2015
@@ -103,9 +103,9 @@ writer.write( xmlContent );
 +---
 
   To ease the correct processing of XML files, developers are encouraged to use
-  <<<{{{http://plexus.codehaus.org/plexus-utils/apidocs/org/codehaus/plexus/util/ReaderFactory.html#newXmlReader(java.io.File)}ReaderFactory.newXmlReader()}}>>>
+  <<<{{{http://codehaus-plexus.github.io/plexus-utils/apidocs/org/codehaus/plexus/util/ReaderFactory.html#newXmlReader(java.io.File)}ReaderFactory.newXmlReader()}}>>>
   and
-  <<<{{{http://plexus.codehaus.org/plexus-utils/apidocs/org/codehaus/plexus/util/WriterFactory.html#newXmlWriter(java.io.File)}WriterFactory.newXmlWriter()}}>>>
+  <<<{{{http://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://plexus.codehaus.org/plexus-utils/apidocs/org/codehaus/plexus/util/FileUtils.html#toFile(java.net.URL)}FileUtils.toFile()}}>>>
+  <<<{{{http://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}
@@ -213,7 +213,7 @@ if ( "info".equals( debugLevel.toLowerCa
     logger.info( message );
 +---
 
-  For case-insensitive string comparisions which should be locale-insensitive, the method
+  For case-insensitive string comparisons which should be locale-insensitive, the method
   <<<{{{http://java.sun.com/javase/6/docs/api/java/lang/String.html#equalsIgnoreCase(java.lang.String)}String.equalsIgnoreCase()}}>>>
   should be used instead. If only a substring like a prefix/suffix should be compared, the method
   <<<{{{http://java.sun.com/javase/6/docs/api/java/lang/String.html#regionMatches(boolean,%20int,%20java.lang.String,%20int,%20int)}String.regionMatches()}}>>>

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=1703009&r1=1703008&r2=1703009&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 Mon Sep 14 17:45:37 2015
@@ -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://plexus.codehaus.org/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}},
+  [[1]] replace the deprecated {{{http://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}},
   which only supports Plexus Javadoc Tags, with its successor:
-  {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}},
+  {{{http://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://plexus.codehaus.org/plexus-containers/plexus-component-annotations/}Java Annotations for Plexus}}.
+  [[2]] update sources with {{{http://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://plexus.codehaus.org/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}}                               | 1.3.8
+| {{{http://codehaus-plexus.github.io/plexus-maven-plugin/}<<<plexus-maven-plugin>>>}}                         | 1.3.8
 *--------------------------------------------------------------------------------------------------------------+--------------+
-| {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/}<<<plexus-component-metadata>>>}} | 1.5.5
+| {{{http://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://plexus.codehaus.org/plexus-maven-plugin/}project}} /                                          | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/}project}} /
-|         | {{{http://plexus.codehaus.org/plexus-maven-plugin/plugin-info.html}plugin info}}                        | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/plugin-info.html}plugin info}}
+|         | {{{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}}
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
 || latest | 1.3.8                                                                                                   | 1.5.5
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
 || phase  | process-sources                                                                                         | process-classes
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
-|| goals  | {{{http://plexus.codehaus.org/plexus-maven-plugin/descriptor-mojo.html}<<<descriptor>>>}}               | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/generate-metadata-mojo.html}<<<generate-metadata>>>}}
+|| 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>>>}}
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
-|         | {{{http://plexus.codehaus.org/plexus-maven-plugin/merge-descriptors-mojo.html}<<<merge-descriptors>>>}} | see <<<staticMetadataDirectory>>> parameter \
+|         | {{{http://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://plexus.codehaus.org/plexus-maven-plugin/test-descriptor-mojo.html}<<<test-descriptor>>>}}     | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-metadata/generate-test-metadata-mojo.html}<<<generate-test-metadata>>>}}
+|         | {{{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>>>}}
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
-|         | {{{http://plexus.codehaus.org/plexus-maven-plugin/test-merge-descriptors-mojo.html}<<<test-merge-descriptors>>>}} | see <<<testStaticMetadataDirectory>>> parameter \
+|         | {{{http://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://plexus.codehaus.org/plexus-containers/plexus-component-annotations/}<<<plexus-component-annotations>>>}} Java 5 annotations:\
+||        |                                                                                                         | javadoc tags + {{{http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/}<<<plexus-component-annotations>>>}} Java 5 annotations:\
 ||        |  <<<...@plexus.component>>>, <<<...@plexus.requirement>>>, <<<...@plexus.configuration>>> \
-||        |                                                                                                         | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Component.html}<<<...@Component>>>}},
-||        |                                                                                                         | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Requirement.html}<<<...@Requirement>>>}},
-||        |                                                                                                         | {{{http://plexus.codehaus.org/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Configuration.html}<<<...@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>>>}},
 *---------+---------------------------------------------------------------------------------------------------------+--------------+
 
 

Modified: maven/site/trunk/content/markdown/maven-jsr330.md
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/maven-jsr330.md?rev=1703009&r1=1703008&r2=1703009&view=diff
==============================================================================
--- maven/site/trunk/content/markdown/maven-jsr330.md (original)
+++ maven/site/trunk/content/markdown/maven-jsr330.md Mon Sep 14 17:45:37 2015
@@ -336,7 +336,7 @@ If you want to look at this example proj
 [p2g3]: http://www.sonatype.com/people/2010/01/from-plexus-to-guice-3-creating-a-guice-bean-extension-layer/
 [jsr330]: http://www.jcp.org/en/jsr/detail?id=330
 [sisu]: http://eclipse.org/sisu/
-[plexus]: http://plexus.codehaus.org/
+[plexus]: http://codehaus-plexus.github.io/
 [plexus-container]: https://github.com/sonatype/plexus-containers
 [jsr330-plugin]: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-5382/
 [guice]: http://code.google.com/p/google-guice/

Modified: maven/site/trunk/content/markdown/maven-logging.md
URL: http://svn.apache.org/viewvc/maven/site/trunk/content/markdown/maven-logging.md?rev=1703009&r1=1703008&r2=1703009&view=diff
==============================================================================
--- maven/site/trunk/content/markdown/maven-logging.md (original)
+++ maven/site/trunk/content/markdown/maven-logging.md Mon Sep 14 17:45:37 2015
@@ -140,5 +140,5 @@ See SLF4J documentation for more details
 [3]: http://logging.apache.org/log4j/2.x/log4j-slf4j-impl/
 [4]: http://logback.qos.ch
 [5]: http://slf4j.org/apidocs/
-[6]: http://plexus.codehaus.org/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/package-summary.html
+[6]: http://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/package-summary.html
 [7]: http://www.slf4j.org/manual.html#swapping