maven git commit: MNG-6093 switched to monkey patched slf4j-simple provider supporting Maven color styles (reverts MNG-6038)

2016-10-19 Thread hboutemy
Repository: maven
Updated Branches:
  refs/heads/master 904f7975c -> 5bd5a6df8


MNG-6093 switched to monkey patched slf4j-simple provider supporting
Maven color styles (reverts MNG-6038)

Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/5bd5a6df
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/5bd5a6df
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/5bd5a6df

Branch: refs/heads/master
Commit: 5bd5a6df8d2664e9c13941a85e0bccd58958f7ce
Parents: 904f797
Author: Hervé Boutemy 
Authored: Thu Sep 22 17:46:53 2016 +0200
Committer: Hervé Boutemy 
Committed: Wed Oct 19 14:10:13 2016 +0200

--
 apache-maven/pom.xml|   4 +-
 .../maven/slf4j-configuration.properties|   1 +
 maven-slf4j-provider/pom.xml| 116 ++
 .../java/org/slf4j/impl/MavenSimpleLogger.java  | 117 +++
 .../slf4j/impl/MavenSimpleLoggerFactory.java|  44 +++
 .../src/main/script/patch-slf4j-simple.groovy   |  53 +
 maven-slf4j-provider/src/site/site.xml  |  36 ++
 pom.xml |   6 +
 src/site/xdoc/index.xml |   1 +
 9 files changed, 376 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/maven/blob/5bd5a6df/apache-maven/pom.xml
--
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index ec11cc2..437fc43 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -92,8 +92,8 @@ under the License.
   aether-transport-wagon
 
 
-  com.planet57.gossip
-  gossip-slf4j
+  org.apache.maven
+  maven-slf4j-provider
 
 
   org.fusesource.jansi

http://git-wip-us.apache.org/repos/asf/maven/blob/5bd5a6df/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
--
diff --git 
a/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
 
b/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
index e385dcb..42b39c0 100644
--- 
a/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
+++ 
b/maven-embedder/src/main/resources/META-INF/maven/slf4j-configuration.properties
@@ -18,6 +18,7 @@
 # key = Slf4j effective logger factory implementation
 # value = corresponding o.a.m.cli.logging.Slf4jConfiguration class
 org.slf4j.impl.SimpleLoggerFactory 
org.apache.maven.cli.logging.impl.Slf4jSimpleConfiguration
+org.slf4j.impl.MavenSimpleLoggerFactory 
org.apache.maven.cli.logging.impl.Slf4jSimpleConfiguration
 org.apache.logging.slf4j.Log4jLoggerFactory 
org.apache.maven.cli.logging.impl.Log4j2Configuration
 ch.qos.logback.classic.LoggerContext 
org.apache.maven.cli.logging.impl.LogbackConfiguration
 com.planet57.gossip.Gossip 
org.apache.maven.cli.logging.impl.gossip.GossipConfiguration

http://git-wip-us.apache.org/repos/asf/maven/blob/5bd5a6df/maven-slf4j-provider/pom.xml
--
diff --git a/maven-slf4j-provider/pom.xml b/maven-slf4j-provider/pom.xml
new file mode 100644
index 000..ecb93e8
--- /dev/null
+++ b/maven-slf4j-provider/pom.xml
@@ -0,0 +1,116 @@
+
+
+
+
+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;>
+  4.0.0
+
+  
+org.apache.maven
+maven
+3.4.0-SNAPSHOT
+  
+
+  maven-slf4j-provider
+
+  Maven SLF4J Simple Provider
+  
+Maven SLF4J provider based on SLF4J's simple provider, monkey-patched to 
support Maven styled colors
+for levels and stacktraces rendering.
+  
+
+  
+
+  org.slf4j
+  slf4j-api
+
+
+  org.apache.maven.shared
+  maven-shared-utils
+
+  
+
+  
+
+  
+org.apache.maven.plugins
+maven-dependency-plugin
+
+  
+
+  org.slf4j
+  slf4j-simple
+  ${slf4jVersion}
+  jar
+  sources
+  false
+  
${project.build.directory}/generated-sources/slf4j-simple
+  org/slf4j/impl/*.java
+
+  
+
+
+  
+unzip-slf4j-simple
+
+  unpack
+
+  
+
+  
+  
+org.codehaus.mojo
+build-helper-maven-plugin
+1.12
+
+  
+add-slf4j-simple
+generate-sources
+
+  add-source
+
+
+  
+

maven-integration-testing git commit: print one space after padding

2016-10-19 Thread hboutemy
Repository: maven-integration-testing
Updated Branches:
  refs/heads/master 3ffb28978 -> ec5968b3f


print one space after padding

Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/ec5968b3
Tree: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/ec5968b3
Diff: 
http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/ec5968b3

Branch: refs/heads/master
Commit: ec5968b3fbe6a3d6c0c1d2b06b2341294694
Parents: 3ffb289
Author: Hervé Boutemy 
Authored: Wed Oct 19 14:21:11 2016 +0200
Committer: Hervé Boutemy 
Committed: Wed Oct 19 14:21:11 2016 +0200

--
 .../java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java  | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/ec5968b3/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
--
diff --git 
a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
 
b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
index 3a9690f..6628a66 100644
--- 
a/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
+++ 
b/core-it-support/maven-it-helper/src/main/java/org/apache/maven/it/AbstractMavenIntegrationTestCase.java
@@ -203,6 +203,7 @@ public abstract class AbstractMavenIntegrationTestCase
 String line = getTestName();
 out.print( line );
 out.print( pad( RESULT_COLUMN - line.length() ) );
+out.print( ' ' );
 
 if ( skip )
 {



svn commit: r1765683 - /maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm

2016-10-19 Thread hboutemy
Author: hboutemy
Date: Wed Oct 19 17:00:10 2016
New Revision: 1765683

URL: http://svn.apache.org/viewvc?rev=1765683=rev
Log:
updated wording

Modified:
maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm

Modified: maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm?rev=1765683=1765682=1765683=diff
==
--- maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm (original)
+++ maven/shared/trunk/maven-reporting-exec/src/site/apt/index.apt.vm Wed Oct 
19 17:00:10 2016
@@ -75,7 +75,7 @@ ${project.name}
 
   []
 
-  Since <<>> 1.2 (which will be used by 
<<>> 3.4), plugin configuration in
+  Since <<>> 1.2 (which is used by 
<<>> 3.4), plugin configuration in
   <<>> is injected into reports.
 
   Maven 3 core makes an automatic transformation of <<<\

svn commit: r999664 [8/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
 (added)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
 Wed Oct 19 17:10:37 2016
@@ -0,0 +1,229 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
\ No newline at end of file

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
--
svn:eol-style = native

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
--
svn:keywords = Author Date Id Revision

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.ttf
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.ttf
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.woff
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.woff
--
svn:mime-type = application/octet-stream

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/accessories-text-editor.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/accessories-text-editor.png
--
svn:mime-type = image/png

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/add.gif
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/add.gif
--
svn:mime-type = application/octet-stream

Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/apache-maven-project-2.png
==
Binary files - no diff available.

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/application-certificate.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/application-certificate.png
--
svn:mime-type = image/png

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/contact-new.png
==
Binary file - no diff available.

Propchange: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/contact-new.png
--
svn:mime-type = image/png

Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/document-properties.png
==
Binary file - no diff available.

Propchange: 

svn commit: r999664 [4/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/checkstyle.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/checkstyle.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/checkstyle.html
 Wed Oct 19 17:10:37 2016
@@ -1,200 +1,391 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Checkstyle Results
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Checkstyle Results
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
 
-
-
-
-
-
+  
+
+   
 
+
+  
+
   
-
-
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Checkstyle Results
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Checkstyle Results
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


   
-  Project Information
+
+
+  
+
+  
+  
+
+Overview
+  
+  
+  
+  
+  
+  

svn commit: r999664 [16/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
 Wed Oct 19 17:10:37 2016
@@ -74,606 +74,613 @@
 66   * liuse the one defined in the reportPlugin 
configuration,/li
 67   * lisearch similar (same groupId and 
artifactId) plugin in the build/plugins section of the pom,/li
 68   * lisearch similar (same groupId and 
artifactId) plugin in the build/pluginManagement section of the 
pom,/li
-69   * liask {@link PluginVersionResolver} to 
get a fallback version (display a warning as it's not a recommended 
use)./li
-70   * /ol
-71   * /p
-72   * p
-73   * Following steps are done:
-74   * ul
-75   * liget {@link PluginDescriptor} from the 
{@link MavenPluginManager} (through
-76   * {@link 
MavenPluginManagerHelper#getPluginDescriptor(Plugin, MavenSession)
-77   * 
MavenPluginManagerHelper.getPluginDescriptor(...)} to protect from core API 
change)/li
-78   * lisetup a {@link ClassLoader}, with the 
Site plugin classloader as parent for the report execution. br
-79   * Notice that some classes are imported from the 
current Site plugin ClassRealm: see {@link #IMPORTS}. Corresponding
-80   * artifacts are excluded from the artifact 
resolution: codedoxia-site-renderer/code, 
codedoxia-sink-api/code
-81   *  and 
codemaven-reporting-api/code.br
-82   * Work is done using {@link MavenPluginManager} 
(through
-83   * {@link 
MavenPluginManagerHelper#setupPluginRealm(PluginDescriptor, MavenSession, 
ClassLoader, List, List)
-84   * MavenPluginManagerHelper.setupPluginRealm(...)} 
to protect from core API change)/li
-85   * lisetup the mojo using {@link 
MavenPluginManager#getConfiguredMojo(Class, MavenSession, MojoExecution)
-86   * 
MavenPluginManager.getConfiguredMojo(...)}/li
-87   * liverify with {@link 
LifecycleExecutor#calculateForkedExecutions(MojoExecution, MavenSession)
-88   * LifecycleExecutor.calculateForkedExecutions(...)} 
if any forked execution is needed: if yes, execute the forked
-89   * execution here/li
-90   * /ul
-91   * /p
-92   * 
-93   * @author Olivier Lamy
-94   */
-95  @Component( role = 
MavenReportExecutor.class )
-96  public class 
DefaultMavenReportExecutor
-97  implements MavenReportExecutor
-98  {
-99  @Requirement
-100 private Logger logger;
-101 
-102 @Requirement
-103 protected MavenPluginManager mavenPluginManager;
-104 
-105 @Requirement
-106 protected MavenPluginManagerHelper
 mavenPluginManagerHelper;
-107 
-108 @Requirement
-109 protected LifecycleExecutor lifecycleExecutor;
-110 
-111 @Requirement
-112 protected PluginVersionResolver 
pluginVersionResolver;
-113 
-114 private static final 
ListString IMPORTS = Arrays.asList( "org.apache.maven.reporting.MavenReport",
-115 
   "org.apache.maven.reporting.MavenMultiPageReport",
-116 
   "org.apache.maven.doxia.siterenderer.Renderer",
-117 
   "org.apache.maven.doxia.sink.SinkFactory",
-118 
   "org.codehaus.doxia.sink.Sink",
-119 
   "org.apache.maven.doxia.sink.Sink",
-120 
   "org.apache.maven.doxia.sink.SinkEventAttributes",
-121 
   "org.apache.maven.doxia.logging.LogEnabled",
-122 
   "org.apache.maven.doxia.logging.Log" );
-123 
-124 private static final 
ListString EXCLUDES = Arrays.asList( "doxia-site-renderer", "doxia-sink-api",
-125 
"maven-reporting-api" );
-126 
-127 public ListMavenReportExecution 
buildMavenReports( MavenReportExecutorRequest mavenReportExecutorRequest )
-128 throws MojoExecutionException
-129 {
-130 if ( mavenReportExecutorRequest.getReportPlugins() 
== null )
-131 {
-132 return Collections.emptyList();
-133 }
-134 
getLog().debug( "DefaultMavenReportExecutor.buildMavenReports()" );
-135 
-136 
SetString reportPluginKeys = new 
HashSetString();
-137 
ListMavenReportExecution reportExecutions = new ArrayListMavenReportExecution();
-138 
-139 String 
pluginKey = "";
-140 try
-141 {
-142 for ( 

svn commit: r999664 [1/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Author: hboutemy
Date: Wed Oct 19 17:10:37 2016
New Revision: 999664

Log:
Site checkin for project Apache Maven Reporting Executor

Added:

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/css/apache-maven-fluido-1.5.min.css
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependency-convergence.html
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.eot
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.svg
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.ttf
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/fonts/glyphicons-halflings-regular.woff
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/accessories-text-editor.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/add.gif
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/application-certificate.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/contact-new.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/document-properties.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/drive-harddisk.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/fix.gif
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/icon_help_sml.gif
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/image-x-generic.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/internet-web-browser.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/network-server.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/package-x-generic.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/profiles/

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/profiles/pre-release.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/profiles/retired.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/profiles/sandbox.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/remove.gif
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/update.gif
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/window-new.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/img/

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/img/glyphicons-halflings-white.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/img/glyphicons-halflings.png
   (with props)

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/js/

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/js/apache-maven-fluido-1.5.min.js
   (with props)
Removed:

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/css/maven-base.css

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/css/maven-theme.css

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/banner.jpg

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/bg.jpg

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/breadcrumbs.jpg

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/collapsed.gif

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/expanded.gif

websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/images/external.png


svn commit: r999664 [14/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/team-list.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/team-list.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/team-list.html
 Wed Oct 19 17:10:37 2016
@@ -1,214 +1,421 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Team list
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Project Team
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
+
+  
+
+   
 
 
-
-
-
-
-
   
-
-
+
+  
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Project Team
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Team list
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


 
-  Project Information
-
-  
-  About
-
-  
-  Project Summary
-
-  
-  Dependency Information

svn commit: r999664 [2/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/apidocs/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/apidocs/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/apidocs/org/apache/maven/reporting/exec/DefaultMavenReportExecutor.html
 Wed Oct 19 17:10:37 2016
@@ -3,13 +3,13 @@
 
 
 
-DefaultMavenReportExecutor (Apache Maven Reporting Executor 1.2 
API)
+DefaultMavenReportExecutor (Apache Maven Reporting Executor 
1.2.1-SNAPSHOT API)
 
 
 
 
 
@@ -82,7 +82,7 @@
 
 
 
-http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
+http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.maven.reporting.exec.DefaultMavenReportExecutor
@@ -98,9 +98,9 @@
 
 
 
-http://plexus.codehaus.org/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Component.html?is-external=true;
 title="class or interface in 
org.codehaus.plexus.component.annotations">@Component(http://plexus.codehaus.org/plexus-containers/plexus-component-annotations/apidocs/org/codehaus/plexus/component/annotations/Component.html?is-external=true#role()"
 title="class or interface in 
org.codehaus.plexus.component.annotations">role=MavenReportExecutor.class)
+@Component(role=MavenReportExecutor.class)
 public class DefaultMavenReportExecutor
-extends http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
+extends http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 implements MavenReportExecutor
 
  This component will build some MavenReportExecution from MavenReportExecutorRequest. 
If a
@@ -109,27 +109,28 @@ implements resolvePluginVersion(...)
 method:
+ resolvePluginVersion(...)
 method:
  
  use the one defined in the reportPlugin configuration,
  search similar (same groupId and artifactId) plugin in the build/plugins 
section of the pom,
  search similar (same groupId and artifactId) plugin in the 
build/pluginManagement section of the pom,
- ask http://maven.apache.org/maven-core/apidocs/org/apache/maven/plugin/version/PluginVersionResolver.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin.version">PluginVersionResolver to get 
a fallback version (display a warning as it's not a recommended use).
+ ask http://maven.apache.org/maven-core/apidocs/org/apache/maven/plugin/version/PluginVersionResolver.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin.version">PluginVersionResolver to get 
a fallback version (display a warning as it's not a recommended use).
+ 
  
  
  
  Following steps are done:
  
  get http://maven.apache.org/maven-plugin-api/apidocs/org/apache/maven/plugin/descriptor/PluginDescriptor.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin.descriptor">PluginDescriptor from the 
http://maven.apache.org/maven-core/apidocs/org/apache/maven/plugin/MavenPluginManager.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin">MavenPluginManager (through
- MavenPluginManagerHelper.getPluginDescriptor(...)
 to protect from core API change)
- setup a http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/ClassLoader.html?is-external=true;
 title="class or interface in java.lang">ClassLoader, with the 
Site plugin classloader as parent for the report execution. 
+ MavenPluginManagerHelper.getPluginDescriptor(...)
 to protect from core API change)
+ setup a http://docs.oracle.com/javase/7/docs/api/java/lang/ClassLoader.html?is-external=true;
 title="class or interface in java.lang">ClassLoader, with the 
Site plugin classloader as parent for the report execution. 
  Notice that some classes are imported from the current Site plugin 
ClassRealm: see IMPORTS.
 Corresponding
  artifacts are excluded from the artifact resolution: 
doxia-site-renderer, doxia-sink-api
   and maven-reporting-api.
  Work is done using http://maven.apache.org/maven-core/apidocs/org/apache/maven/plugin/MavenPluginManager.html?is-external=true;
 title="class or interface in 
org.apache.maven.plugin">MavenPluginManager (through
- 

svn commit: r999664 [12/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/project-reports.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/project-reports.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/project-reports.html
 Wed Oct 19 17:10:37 2016
@@ -1,200 +1,391 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Generated Reports
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Generated Reports
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
 
-
-
-
-
-
+  
+
+   
 
+
+  
+
   
-
-
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Generated Reports
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Generated Reports
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


   
-  Project Information
+
+
+  
+
+  
+  
+
+Overview
+  
+  
+  
+  
+   

svn commit: r999664 [10/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/mail-lists.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/mail-lists.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/mail-lists.html
 Wed Oct 19 17:10:37 2016
@@ -1,210 +1,417 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Project Mailing Lists
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Project Mailing 
Lists
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
 
-
-
-
-
-
+  
+
+   
 
+
+  
+
   
-
-
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Project Mailing Lists
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Project Mailing Lists
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


 
-  Project Information
-
-  
-  About
-
-  
-  Project Summary
-
-   

svn commit: r999664 [5/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependencies.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependencies.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependencies.html
 Wed Oct 19 17:10:37 2016
@@ -1,219 +1,426 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Project Dependencies
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Project 
Dependencies
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
+
+  
+
+   
 
 
-
-
-
-
-
   
-
-
+
+  
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Project Dependencies
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Project Dependencies
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


 
-  Project Information
-
-  
-  About
-
-  
-  Project Summary
-
- 

svn commit: r999664 [17/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/MavenPluginManagerHelper.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/MavenPluginManagerHelper.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/MavenPluginManagerHelper.html
 Wed Oct 19 17:10:37 2016
@@ -32,24 +32,24 @@
 24  import org.apache.maven.execution.MavenSession;
 25  import org.apache.maven.model.Plugin;
 26  import 
org.apache.maven.plugin.InvalidPluginDescriptorException;
-27  import org.apache.maven.plugin.MavenPluginManager;
-28  import 
org.apache.maven.plugin.PluginContainerException;
-29  import 
org.apache.maven.plugin.PluginDescriptorParsingException;
-30  import 
org.apache.maven.plugin.PluginResolutionException;
-31  import 
org.apache.maven.plugin.descriptor.PluginDescriptor;
-32  
-33  /**
-34   * {@link MavenPluginManager} helper to deal with 
API changes between Maven 3.0.x and 3.1.x, ie switch from Sonatype Aether
-35   * (in codeorg.sonatype.aether/code 
package) to Eclipse Aether (in codeorg.eclipse.aether/code 
package) for
-36   * some parameters.
-37   * 
-38   * @author Hervé Boutemy
-39   * @since 1.1
-40   */
-41  public interface MavenPluginManagerHelper
-42  {
-43  /**
-44   * Helper for {@link 
MavenPluginManager#getPluginDescriptor(Plugin, List, 
org.eclipse.aether.RepositorySystemSession)}
+27  import 
org.apache.maven.plugin.PluginContainerException;
+28  import 
org.apache.maven.plugin.PluginDescriptorParsingException;
+29  import 
org.apache.maven.plugin.PluginResolutionException;
+30  import 
org.apache.maven.plugin.descriptor.PluginDescriptor;
+31  
+32  /**
+33   * {@link 
org.apache.maven.plugin.MavenPluginManager} helper to deal with API changes 
between Maven 3.0.x and 3.1.x, ie
+34   * switch from Sonatype Aether (in 
codeorg.sonatype.aether/code package) to Eclipse Aether (in
+35   * codeorg.eclipse.aether/code 
package) for some parameters.
+36   * 
+37   * @author Hervé Boutemy
+38   * @since 1.1
+39   */
+40  public interface MavenPluginManagerHelper
+41  {
+42  /**
+43   * Helper for {@link 
org.apache.maven.plugin.MavenPluginManager#getPluginDescriptor
+44   * 
MavenPluginManager#getPluginDescriptor(Plugin, List, 
xxx.aether.RepositorySystemSession)}
 45   * 
 46   * @param plugin
 47   * @param session
@@ -62,22 +62,23 @@
 54  throws PluginResolutionException, 
PluginDescriptorParsingException, InvalidPluginDescriptorException;
 55  
 56  /**
-57   * Helper for {@link 
MavenPluginManager#setupPluginRealm(PluginDescriptor, MavenSession, 
ClassLoader, List, org.eclipse.aether.graph.DependencyFilter)
-58   * 
-59   * @param pluginDescriptor
-60   * @param session
-61   * @param parent
-62   * @param imports
-63   * @param excludeArtifactIds
-64   * @throws PluginResolutionException
-65   * @throws PluginContainerException
-66   */
-67  void setupPluginRealm( PluginDescriptor 
pluginDescriptor, MavenSession session, ClassLoader parent,
-68
ListString imports, ListString excludeArtifactIds )
-69  throws PluginResolutionException, 
PluginContainerException;
-70  }
+57   * Helper for {@link 
org.apache.maven.plugin.MavenPluginManager#setupPluginRealm
+58   * 
MavenPluginManager#setupPluginRealm(PluginDescriptor, ..., List, 
xxx.aether.graph.DependencyFilter)}
+59   * 
+60   * @param pluginDescriptor
+61   * @param session
+62   * @param parent
+63   * @param imports
+64   * @param excludeArtifactIds
+65   * @throws PluginResolutionException
+66   * @throws PluginContainerException
+67   */
+68  void setupPluginRealm( PluginDescriptor 
pluginDescriptor, MavenSession session, ClassLoader parent,
+69
ListString imports, ListString excludeArtifactIds )
+70  throws PluginResolutionException, 
PluginContainerException;
+71  }
 
 
-Copyright  20022014 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20022016 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/MavenReportExecution.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/xref/org/apache/maven/reporting/exec/MavenReportExecution.html
 (original)
+++ 

svn commit: r999664 [6/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/reporti

2016-10-19 Thread hboutemy
Added: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependency-convergence.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependency-convergence.html
 (added)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/dependency-convergence.html
 Wed Oct 19 17:10:37 2016
@@ -0,0 +1,586 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Maven Reporting Executor  Dependency 
Convergence
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
+
+  
+
+   
 
+
+  
+
+  
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Dependency Convergence
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
+
+
+  
+
+
+  
+
+  
+  
+
+Overview
+  
+  
+  
+  
+  
+Introduction
+
+
+  
+  
+  
+  
+JavaDocs
+
+
+  
+  
+  
+  
+Source Xref
+
+
+  
+  
+  http://www.apache.org/licenses/; 
class="externalLink" title="License">
+  
+License
+
+
+  
+  
+  
+  
+Download
+
+  Parent Project
+  
+  
+  
+  
+  
+Apache Maven Shared Components
+
+Project 
Documentation
+   



 
+  
+  
+  
+  
+Project Information
+
+
+  
+  
+  
+  
+About
+
+
+  
+  
+  
+  
+Summary
+
+
+  
+  
+  
+  
+Dependency Information
+
+
+  
+  
+  
+  
+Team
+
+
+  
+  
+  
+  
+Source Code Management
+
+
+  
+  
+  
+  
+Issue Management
+
+
+  
+  
+  
+  
+Mailing Lists
+
+
+  
+  
+  
+  
+Dependency Management
+
+
+  
+  
+  
+  
+Dependencies
+
+
+  
+  
+Dependency Convergence
+  
+
+  
+  
+ 

svn commit: r999664 [15/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/class-use/TestDefaultMavenReportExecutor.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/class-use/TestDefaultMavenReportExecutor.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/class-use/TestDefaultMavenReportExecutor.html
 Wed Oct 19 17:10:37 2016
@@ -3,13 +3,13 @@
 
 
 
-Uses of Class 
org.apache.maven.reporting.exec.TestDefaultMavenReportExecutor (Apache Maven 
Reporting Executor 1.2 Test API)
+Uses of Class 
org.apache.maven.reporting.exec.TestDefaultMavenReportExecutor (Apache Maven 
Reporting Executor 1.2.1-SNAPSHOT Test API)
 
 
 
 
 
@@ -108,6 +108,6 @@
 
 
 
-Copyright  20022014 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20022016 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-frame.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-frame.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-frame.html
 Wed Oct 19 17:10:37 2016
@@ -3,7 +3,7 @@
 
 
 
-org.apache.maven.reporting.exec (Apache Maven Reporting Executor 1.2 
Test API)
+org.apache.maven.reporting.exec (Apache Maven Reporting Executor 
1.2.1-SNAPSHOT Test API)
 
 
 

Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-summary.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-summary.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-summary.html
 Wed Oct 19 17:10:37 2016
@@ -3,13 +3,13 @@
 
 
 
-org.apache.maven.reporting.exec (Apache Maven Reporting Executor 1.2 
Test API)
+org.apache.maven.reporting.exec (Apache Maven Reporting Executor 
1.2.1-SNAPSHOT Test API)
 
 
 
 
 
@@ -126,6 +126,6 @@
 
 
 
-Copyright  20022014 http://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20022016 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-tree.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-tree.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/testapidocs/org/apache/maven/reporting/exec/package-tree.html
 Wed Oct 19 17:10:37 2016
@@ -3,13 +3,13 @@
 
 
 
-org.apache.maven.reporting.exec Class Hierarchy (Apache Maven Reporting 
Executor 1.2 Test API)
+org.apache.maven.reporting.exec Class Hierarchy (Apache Maven Reporting 
Executor 1.2.1-SNAPSHOT Test API)
 
 
 
 
 
@@ -66,7 +66,7 @@
 
 Class Hierarchy
 

svn commit: r999664 [11/17] - in /websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST: ./ apidocs/ apidocs/org/apache/maven/reporting/exec/ apidocs/org/apache/maven/report

2016-10-19 Thread hboutemy
Modified: 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/plugins.html
==
--- 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/plugins.html
 (original)
+++ 
websites/production/maven/components/shared-archives/maven-reporting-exec-LATEST/plugins.html
 Wed Oct 19 17:10:37 2016
@@ -1,268 +1,479 @@
-http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+
 
-http://www.w3.org/1999/xhtml;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
   
-Apache Maven Reporting Executor - Project Build Plugins
-
-  @import url("./css/maven-base.css");
-  @import url("./css/maven-theme.css");
-  @import url("./css/site.css");
-
-
-
-
-
-http://www.google-analytics.com/urchin.js"; 
type="text/javascript">
-
-_uacct = "UA-140879-1";
-urchinTracker();
-  
-  
-
-  
-
+
+
+
+
+Apache Maven Reporting Executor  Project Plugins
+
+
+
+
+  
+
+
+  
+
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-140879-1']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 
'http://www') + '.google-analytics.com/ga.js';
+var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+  })();
+
+
+  
+
+  
+
+
+
+
+  
+
+https://www.apache.org/; 
id="bannerLeft">
+   
 
 
-
-
-
-
-
+  
+
+   
 
+
+  
+
   
-
-
+
+  
+
+  
+  
+https://www.apache.org/; class="externalLink" 
title="Apache">
+Apache
+/
+  
+
+
+Maven
+/
+  
+
+
+Shared Components
+/
+  
+
+
+Apache Maven Reporting Executor
+/
+  
+Project Plugins
+
+  
+  | Last Published: 2016-10-19
+  
+Version: 1.2.1-SNAPSHOT
+
 
-   
-  http://www.apache.org/; 
class="externalLink">Apache
-
-  Maven
-
-  Shared Components
-
-  Apache Maven Reporting Executor
-
-Project Build Plugins
-
-
-Last Published: 2014-06-28
-  | Version: 1.2
-
-  
-
+
   
-
-
-  
- 
-   Overview
-  
-  
-  Introduction
-
-  
-  JavaDocs
-
-  
-  Source Xref
-
-  
-  http://www.apache.org/licenses/; 
class="externalLink">License
-
-  
-  Download
-
-  
-   Parent Project
-  
-  
-  Apache Maven Shared 
Components
-
-  
- Project Documentation
-  
-   


 
-  Project Information
-
-  
-  About
-
-  
-  Project Summary
-
-  
-