svn commit: r1917561 [32/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref-test/org/apache/maven/shared/invoker/MavenCommandLineBuilderTest.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref-test/org/apache/maven/shared/invoker/MavenCommandLineBuilderTest.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref-test/org/apache/maven/shared/invoker/MavenCommandLineBuilderTest.html
 Tue May  7 20:53:44 2024
@@ -6,989 +6,955 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import java.io.File;
-23  import java.io.FileWriter;
-24  import java.io.IOException;
-25  import java.util.ArrayList;
-26  import java.util.Arrays;
-27  import java.util.Collections;
-28  import java.util.HashSet;
-29  import java.util.List;
-30  import java.util.Properties;
-31  import java.util.Set;
-32  
-33  import org.apache.maven.shared.utils.Os;
-34  import 
org.apache.maven.shared.utils.cli.Commandline;
-35  import org.junit.After;
-36  import org.junit.Before;
-37  import org.junit.Rule;
-38  import org.junit.Test;
-39  import org.junit.rules.TemporaryFolder;
-40  
-41  import static 
org.hamcrest.CoreMatchers.is;
-42  import static 
org.hamcrest.CoreMatchers.notNullValue;
-43  import static 
org.junit.Assert.assertArrayEquals;
-44  import static 
org.junit.Assert.assertEquals;
-45  import static 
org.junit.Assert.assertFalse;
-46  import static 
org.junit.Assert.assertTrue;
-47  import static 
org.junit.Assert.fail;
-48  import static 
org.junit.Assume.assumeThat;
-49  
-50  public class 
MavenCommandLineBuilderTest
-51  {
-52  @Rule
-53  public TemporaryFolder temporaryFolder = new TemporaryFolder();
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  import java.io.File;
+22  import java.io.FileWriter;
+23  import java.io.IOException;
+24  import java.nio.file.Files;
+25  import java.nio.file.Path;
+26  import java.util.ArrayList;
+27  import java.util.Arrays;
+28  import java.util.Collections;
+29  import java.util.HashSet;
+30  import java.util.List;
+31  import java.util.Objects;
+32  import java.util.Properties;
+33  import java.util.Set;
+34  
+35  import org.apache.maven.shared.utils.Os;
+36  import 
org.apache.maven.shared.utils.cli.Commandline;
+37  import org.junit.jupiter.api.AfterEach;
+38  import org.junit.jupiter.api.BeforeEach;
+39  import org.junit.jupiter.api.Test;
+40  import org.junit.jupiter.api.condition.EnabledOnOs;
+41  import org.junit.jupiter.api.condition.OS;
+42  import org.junit.jupiter.api.io.TempDir;
+43  
+44  import static 
org.junit.jupiter.api.Assertions.assertArrayEquals;
+45  import static 
org.junit.jupiter.api.Assertions.assertEquals;
+46  import static 
org.junit.jupiter.api.Assertions.assertFalse;
+47  import static 
org.junit.jupiter.api.Assertions.assertThrows;
+48  import static 
org.junit.jupiter.api.Assertions.assertTrue;
+49  import static 
org.junit.jupiter.api.Assumptions.assumeTrue;

svn commit: r1917561 [43/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/PrintStreamLogger.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/PrintStreamLogger.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/PrintStreamLogger.html
 Tue May  7 20:53:44 2024
@@ -6,277 +6,246 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import java.io.PrintStream;
-23  import java.io.PrintWriter;
-24  import java.io.StringWriter;
-25  
-26  /**
-27   * Offers a logger that writes to a print stream 
like {@link java.lang.System#out}.
-28   *
-29   * @since 2.0.9
-30   */
-31  public class 
PrintStreamLogger
-32  implements InvokerLogger
-33  {
-34  
-35  /**
-36   * The print stream to write to, never 
codenull/code.
-37   */
-38  private PrintStream out;
-39  
-40  /**
-41   * The threshold used to filter messages.
-42   */
-43  private int 
threshold;
-44  
-45  /**
-46   * Creates a new logger that writes to {@link 
java.lang.System#out} and has a threshold of {@link #INFO}.
-47   */
-48  public PrintStreamLogger()
-49  {
-50  this( System.out, INFO );
-51  }
-52  
-53  /**
-54   * Creates a new logger that writes to the 
specified print stream.
-55   *
-56   * @param out The print stream to write to, must 
not be codenull/code.
-57   * @param threshold The threshold for the 
logger.
-58   */
-59  public PrintStreamLogger(
 PrintStream out, int threshold )
-60  {
-61  if ( out == null )
-62  {
-63  throw new 
NullPointerException( "missing output stream" );
-64  }
-65  this.out = out;
-66  setThreshold( 
threshold );
-67  }
-68  
-69  /**
-70   * Writes the specified message and exception to 
the print stream.
-71   * 
-72   * @param level The priority level of the 
message.
-73   * @param message The message to log, may be 
codenull/code.
-74   * @param error The exception to log, may be 
codenull/code.
-75   */
-76  private void 
log( int level, String message, Throwable 
error )
-77  {
-78  if ( level  threshold )
-79  {
-80  // don't log when it doesn't match your threshold.
-81  return;
-82  }
-83  
-84  if ( message == null  error == null )
-85  {
-86  // don't log when there's nothing to log.
-87  return;
-88  }
-89  
-90  StringBuilder 
buffer = new StringBuilder();
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  import java.io.PrintStream;
+22  import java.io.PrintWriter;
+23  import java.io.StringWriter;
+24  
+25  /**
+26   * Offers a logger that writes to a print stream 
like {@link java.lang.System#out}.
+27   *
+28   * 

svn commit: r1917561 [40/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvokerLogger.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvokerLogger.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvokerLogger.html
 Tue May  7 20:53:44 2024
@@ -6,193 +6,190 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  /**
-23   * A logger used by {@link 
org.apache.maven.shared.invoker.Invoker} instances to output diagnostic 
messages.
-24   *
-25   * @see Invoker#setLogger(InvokerLogger)
-26   * @author a href="mailto:ja...@maven.org; 
target="alexandria_uri">mailto:ja...@maven.org"Jason van 
Zyl/a
-27   */
-28  public interface InvokerLogger
-29  {
-30  
-31  /**
-32   * The threshold for debug output.
-33   */
-34  int DEBUG = 4;
-35  
-36  /**
-37   * The threshold for info output.
-38   */
-39  int INFO = 3;
-40  
-41  /**
-42   * The threshold for warn output.
-43   */
-44  int WARN = 2;
-45  
-46  /**
-47   * The threshold for error output.
-48   */
-49  int ERROR = 1;
-50  
-51  /**
-52   * The threshold for fatal error output.
-53   */
-54  int FATAL = 0;
-55  
-56  /**
-57   * Logs the specified debug message.
-58   *
-59   * @param message The message to log, may be 
codenull/code.
-60   */
-61  void debug( String message );
-62  
-63  /**
-64   * Logs the specified debug message and the 
accompanying exception.
-65   *
-66   * @param message The message to log, may be 
codenull/code.
-67   * @param throwable The exception to log, may be 
codenull/code.
-68   */
-69  void debug( String message, Throwable throwable );
-70  
-71  /**
-72   * Tests whether debug output is enabled for 
this logger.
-73   *
-74   * @return codetrue/code if 
messages with priority "debug" or above are logged, 
codefalse/code
-75   * otherwise.
-76   */
-77  boolean isDebugEnabled();
-78  
-79  /**
-80   * Logs the specified info message.
-81   *
-82   * @param message The message to log, may be 
codenull/code.
-83   */
-84  void info( String message );
-85  
-86  /**
-87   * Logs the specified info message and the 
accompanying exception.
-88   *
-89   * @param message The message to log, may be 
codenull/code.
-90   * @param throwable The exception to log, may be 
codenull/code.
-91   */
-92  void info( String message, Throwable throwable );
-93  
-94  /**
-95   * Tests whether info output is enabled for this 
logger.
-96   *
-97   * @return codetrue/code if 
messages with priority "info" or above are logged, 
codefalse/code otherwise.
-98   */
-99  boolean isInfoEnabled();
-100 
-101 /**
-102  * Logs the specified warning message.
-103  *
-104  * @param message The message to log, may be 
codenull/code.
-105  */
-106 void warn( String message );
-107 
-108 /**
-109  * Logs the specified warning message and the 
accompanying exception.
-110  *
-111  * @param message The message to log, may be 
codenull/code.
-112  * 

svn commit: r1917561 [44/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-frame.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-frame.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-frame.html
 Tue May  7 20:53:44 2024
@@ -4,7 +4,7 @@
 
 
 
-Apache Maven Invoker 3.2.0 Reference Package 
org.apache.maven.shared.invoker
+Apache Maven Invoker 3.3.0 Reference Package 
org.apache.maven.shared.invoker
 
 
 
@@ -12,58 +12,61 @@
 
 Classes
 
-
+
 CommandLineConfigurationException
 
-
+
 DefaultInvocationRequest
 
-
+
 DefaultInvocationResult
 
-
+
 DefaultInvoker
 
-
+
 InvocationOutputHandler
 
-
+
 InvocationRequest
 
-
+
 InvocationRequest.CheckSumPolicy
 
-
+
 InvocationRequest.ReactorFailureBehavior
 
-
+
 InvocationResult
 
-
+
 Invoker
 
-
+
 InvokerLogger
 
-
+
 MavenCommandLineBuilder
 
-
+
 MavenInvocationException
 
-
+
 PrintStreamHandler
 
-
+
 PrintStreamLogger
 
-
+
 SystemOutHandler
 
-
+
 SystemOutLogger
 
-
+
+UpdateSnapshotsPolicy
+
+
 
 
 
\ No newline at end of file

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-summary.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-summary.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/package-summary.html
 Tue May  7 20:53:44 2024
@@ -4,7 +4,7 @@
 
 
 
-Apache Maven Invoker 3.2.0 Reference Package 
org.apache.maven.shared.invoker
+Apache Maven Invoker 3.3.0 Reference Package 
org.apache.maven.shared.invoker
 
 
 
@@ -23,7 +23,7 @@
 Index
 Help
 
-Apache Maven Invoker 3.2.0 
Reference
+Apache Maven Invoker 3.3.0 
Reference
 
 
 
@@ -56,92 +56,97 @@
 
 
 
-
+   

 
 CommandLineConfigurationException
 
 
-
+   
 
 
 DefaultInvocationRequest
 
 
-
+   
 
 
 DefaultInvocationResult
 
 
-
+   

svn commit: r1917561 [24/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/ci-management.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/ci-management.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/ci-management.html
 Tue May  7 20:53:44 2024
@@ -1,7 +1,9 @@
 
+
+
 
 http://www.w3.org/1999/xhtml; lang="en">
   
@@ -9,40 +11,46 @@
 
 
 Apache Maven Invoker  CI Management
-
+
 
 
-
-
+
+
+
 
-  
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-  ga('create', 'UA-140879-1', 'auto');
-  ga('send', 'pageview');
-  ga('set', 'anonymizeIp', true);
-  ga('set', 'forceSSL', true);
+var _paq = window._paq = window._paq || [];
+_paq.push(['disableCookies']);
+_paq.push(['trackPageView']);
+_paq.push(['enableLinkTracking']);
+
+(function() {
+var u="https://analytics.apache.org/";;
+_paq.push(['setTrackerUrl', u+'/matomo.php']);
+_paq.push(['setSiteId', '3']);
+var d=document, g=d.createElement('script'), 
s=d.getElementsByTagName('script')[0];
+g.async=true; g.src=u+'/matomo.js'; s.parentNode.insertBefore(g,s);
+})();
 
+
   
   
 
   
 
-  https://www.apache.org/; 
id="bannerLeft">
-  
+  https://www.apache.org/; 
id="bannerLeft">
+  
   
 
 
 
   
-  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
-  Maven/
-  Shared 
Components/
-  Apache 
Maven Invoker/
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Shared 
Components/
+  Apache Maven 
Invoker/
 CI Management
-| 
Last Published: 2022-04-05
-  Version: 3.2.0
+| 
Last Published: 2024-05-07
+  Version: 3.3.0
   
 
   
@@ -70,49 +78,45 @@
   Dependency Management
   Dependencies
   Dependency Convergence
-  CI 
Management
+  CI Management
   Plugin Management
   Plugins
   Distribution Management
  
 Project Reports
Maven Projects
-Archetype
-Artifact Resolver
-Doxia
-Extensions
-JXR
 Maven
+Archetypes
+Extensions
 Parent POMs
 Plugins
-Plugin Testing
-Plugin Tools
-Resource Bundles
-SCM
-Shared Components
 Skins
-Surefire
-Wagon
+
+ 
+  Archetype
+  Artifact Resolver
+  Doxia
+  Indexer
+  JXR
+  Plugin Testing
+  Plugin Tools
+  Resource Bundles
+  SCM
+  Shared Components
+  Surefire
+  Wagon
+ 
ASF
 https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
 https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://privacy.apache.org/policies/privacy-policy-public.html; 
class="externalLink" title="Data Privacy">Data 
Privacy
 https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
 https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
   
   
   
-https://www.google.com/search; method="get" >
-  
-  
-
-asyncJs( 'https://cse.google.com/brand?form=search-form' )
-
 
   
-
-https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
-!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
-
   
   
 http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
@@ -125,7 +129,8 @@
 This project uses https://www.jenkins.io/;>Jenkins.
 Access
 The following is a link to the continuous integration system used by the 
project:
-https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-invoker/;>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-invoker/
+

svn commit: r1917561 [34/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
 Tue May  7 20:53:44 2024
@@ -6,61 +6,55 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  /**
-23   * Signals an error during the construction of the 
command line used to invoke Maven.
-24   *
-25   */
-26  public class 
CommandLineConfigurationException
-27  extends Exception
-28  {
-29  
-30  private static final 
long serialVersionUID = 1L;
-31  
-32  /**
-33   * Creates a new exception using the specified 
detail message and cause.
-34   *
-35   * @param message The detail message for this 
exception, may be codenull/code.
-36   * @param cause The nested exception, may be 
codenull/code.
-37   */
-38  public CommandLineConfigurationException(
 String message, Throwable cause )
-39  {
-40  super( message, cause );
-41  }
-42  
-43  /**
-44   * Creates a new exception using the specified 
detail message.
-45   *
-46   * @param message The detail message for this 
exception, may be codenull/code.
-47   */
-48  public CommandLineConfigurationException(
 String message )
-49  {
-50  super( message );
-51  }
-52  
-53  }
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  /**
+22   * Signals an error during the construction of the 
command line used to invoke Maven.
+23   *
+24   */
+25  public class 
CommandLineConfigurationException
 extends Exception {
+26  
+27  private static final 
long serialVersionUID = 1L;
+28  
+29  /**
+30   * Creates a new exception using the specified 
detail message and cause.
+31   *
+32   * @param message The detail message for this 
exception, may be codenull/code.
+33   * @param cause The nested exception, may be 
codenull/code.
+34   */
+35  public CommandLineConfigurationException(String
 message, Throwable cause) {
+36  super(message, cause);
+37  }
+38  
+39  /**
+40   * Creates a new exception using the specified 
detail message.
+41   *
+42   * @param message The detail message for this 
exception, may be codenull/code.
+43   */
+44  public CommandLineConfigurationException(String
 message) {
+45  super(message);
+46  }
+47  }
 
 
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file




svn commit: r1917561 [23/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/stylesheet.css
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/stylesheet.css
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/stylesheet.css
 Tue May  7 20:53:44 2024
@@ -1,574 +1,1272 @@
-/* Javadoc style sheet */
 /*
-Overall document style
-*/
+ * Javadoc style sheet
+ */
 
 @import url('resources/fonts/dejavu.css');
 
+/*
+ * These CSS custom properties (variables) define the core color and font
+ * properties used in this stylesheet.
+ */
+:root {
+/* body, block and code fonts */
+--body-font-family: 'DejaVu Sans', Arial, Helvetica, sans-serif;
+--block-font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, 
serif;
+--code-font-family: 'DejaVu Sans Mono', monospace;
+/* Base font sizes for body and code elements */
+--body-font-size: 14px;
+--code-font-size: 14px;
+/* Text colors for body and block elements */
+--body-text-color: #353833;
+--block-text-color: #474747;
+/* Background colors for various structural elements */
+--body-background-color: #ff;
+--section-background-color: #f8f8f8;
+--detail-background-color: #ff;
+/* Colors for navigation bar and table captions */
+--navbar-background-color: #4D7A97;
+--navbar-text-color: #ff;
+/* Background color for subnavigation and various headers */
+--subnav-background-color: #dee3e9;
+/* Background and text colors for selected tabs and navigation items */
+--selected-background-color: #f8981d;
+--selected-text-color: #253441;
+--selected-link-color: #1f389c;
+/* Background colors for generated tables */
+--even-row-color: #ff;
+--odd-row-color: #ef;
+/* Text color for page title */
+--title-color: #2c4557;
+/* Text colors for links */
+--link-color: #4A6782;
+--link-color-active: #bb7a2a;
+/* Snippet colors */
+--snippet-background-color: #ebecee;
+--snippet-text-color: var(--block-text-color);
+--snippet-highlight-color: #f7c590;
+/* Border colors for structural elements and user defined tables */
+--border-color: #ededed;
+--table-border-color: #00;
+/* Search input colors */
+--search-input-background-color: #ff;
+--search-input-text-color: #00;
+--search-input-placeholder-color: #909090;
+/* Highlight color for active search tag target */
+--search-tag-highlight-color: #00;
+/* Adjustments for icon and active background colors of copy-to-clipboard 
buttons */
+--copy-icon-brightness: 100%;
+--copy-button-background-color-active: rgba(168, 168, 176, 0.3);
+/* Colors for invalid tag notifications */
+--invalid-tag-background-color: #ffe6e6;
+--invalid-tag-text-color: #00;
+}
+/*
+ * Styles for individual HTML elements.
+ *
+ * These are styles that are specific to individual HTML elements. Changing 
them affects the style of a particular
+ * HTML element throughout the page.
+ */
 body {
-background-color:#ff;
-color:#353833;
-font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
-font-size:14px;
+background-color:var(--body-background-color);
+color:var(--body-text-color);
+font-family:var(--body-font-family);
+font-size:var(--body-font-size);
 margin:0;
+padding:0;
+height:100%;
+width:100%;
 }
-a:link, a:visited {
-text-decoration:none;
-color:#4A6782;
-}
-a:hover, a:focus {
-text-decoration:none;
-color:#bb7a2a;
+iframe {
+margin:0;
+padding:0;
+height:100%;
+width:100%;
+overflow-y:scroll;
+border:none;
 }
-a:active {
+a:link, a:visited {
 text-decoration:none;
-color:#4A6782;
+color:var(--link-color);
 }
-a[name] {
-color:#353833;
-}
-a[name]:hover {
+a[href]:hover, a[href]:focus {
 text-decoration:none;
-color:#353833;
+color:var(--link-color-active);
 }
 pre {
-font-family:'DejaVu Sans Mono', monospace;
-font-size:14px;
+font-family:var(--code-font-family);
+font-size:1em;
 }
 h1 {
-font-size:20px;
+font-size:1.428em;
 }
 h2 {
-font-size:18px;
+font-size:1.285em;
 }
 h3 {
-font-size:16px;
-font-style:italic;
+font-size:1.14em;
 }
 h4 {
-font-size:13px;
+font-size:1.072em;
 }
 h5 {
-font-size:12px;
+font-size:1.001em;
 }
 h6 {
-font-size:11px;
+font-size:0.93em;
+}
+/* Disable font boosting for selected elements */
+h1, h2, h3, h4, h5, h6, div.member-signature {
+max-height: 1000em;
 }
 ul {
 list-style-type:disc;
 }
 code, tt {
-font-family:'DejaVu Sans Mono', monospace;
-font-size:14px;
+font-family:var(--code-font-family);
+}
+:not(h1, h2, h3, h4, h5, h6) > code,
+:not(h1, h2, h3, h4, h5, h6) > tt {
+font-size:var(--code-font-size);
 padding-top:4px;
 

svn commit: r1917561 [41/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
 Tue May  7 20:53:44 2024
@@ -6,784 +6,662 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import java.io.File;
-23  import java.io.IOException;
-24  import java.util.List;
-25  import java.util.Map;
-26  import java.util.Map.Entry;
-27  import java.util.Properties;
-28  
-29  import 
org.apache.maven.shared.invoker.InvocationRequest.CheckSumPolicy;
-30  import 
org.apache.maven.shared.invoker.InvocationRequest.ReactorFailureBehavior;
-31  import org.apache.maven.shared.utils.Os;
-32  import org.apache.maven.shared.utils.StringUtils;
-33  import 
org.apache.maven.shared.utils.cli.CommandLineException;
-34  import 
org.apache.maven.shared.utils.cli.Commandline;
-35  
-36  /**
-37   * pMavenCommandLineBuilder 
class./p
-38   */
-39  public class 
MavenCommandLineBuilder
-40  {
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  import java.io.File;
+22  import java.io.IOException;
+23  import java.util.List;
+24  import java.util.Map;
+25  import java.util.Map.Entry;
+26  import java.util.Properties;
+27  
+28  import 
org.apache.maven.shared.invoker.InvocationRequest.CheckSumPolicy;
+29  import 
org.apache.maven.shared.invoker.InvocationRequest.ReactorFailureBehavior;
+30  import org.apache.maven.shared.utils.Os;
+31  import org.apache.maven.shared.utils.StringUtils;
+32  import 
org.apache.maven.shared.utils.cli.CommandLineException;
+33  import 
org.apache.maven.shared.utils.cli.Commandline;
+34  
+35  /**
+36   * pMavenCommandLineBuilder 
class./p
+37   */
+38  public class 
MavenCommandLineBuilder
 {
+39  
+40  private static final 
InvokerLogger
 DEFAULT_LOGGER = new SystemOutLogger();
 41  
-42  private static final 
InvokerLogger
 DEFAULT_LOGGER = new SystemOutLogger();
+42  private InvokerLogger
 logger = DEFAULT_LOGGER;
 43  
-44  private InvokerLogger
 logger = DEFAULT_LOGGER;
+44  private File baseDirectory;
 45  
-46  private File baseDirectory;
+46  private File localRepositoryDirectory;
 47  
-48  private File localRepositoryDirectory;
+48  private File mavenHome;
 49  
-50  private File mavenHome;
+50  private File mavenExecutable;
 51  
-52  private File mavenExecutable;
-53  
-54  /**
-55   * pbuild./p
-56   *
-57   * @param request a {@link 
org.apache.maven.shared.invoker.InvocationRequest} object.
-58   * @return a {@link 
org.apache.maven.shared.utils.cli.Commandline} object.
-59   * @throws 
org.apache.maven.shared.invoker.CommandLineConfigurationException if any.
-60   */

svn commit: r1917561 [29/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/surefire-report.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/surefire-report.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/surefire-report.html
 Tue May  7 20:53:44 2024
@@ -1,7 +1,9 @@
 
+
+
 
 http://www.w3.org/1999/xhtml; lang="en">
   
@@ -9,40 +11,46 @@
 
 
 Apache Maven Invoker  Surefire Report
-
+
 
 
-
-
+
+
+
 
-  
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-  ga('create', 'UA-140879-1', 'auto');
-  ga('send', 'pageview');
-  ga('set', 'anonymizeIp', true);
-  ga('set', 'forceSSL', true);
+var _paq = window._paq = window._paq || [];
+_paq.push(['disableCookies']);
+_paq.push(['trackPageView']);
+_paq.push(['enableLinkTracking']);
+
+(function() {
+var u="https://analytics.apache.org/";;
+_paq.push(['setTrackerUrl', u+'/matomo.php']);
+_paq.push(['setSiteId', '3']);
+var d=document, g=d.createElement('script'), 
s=d.getElementsByTagName('script')[0];
+g.async=true; g.src=u+'/matomo.js'; s.parentNode.insertBefore(g,s);
+})();
 
+
   
   
 
   
 
-  https://www.apache.org/; 
id="bannerLeft">
-  
+  https://www.apache.org/; 
id="bannerLeft">
+  
   
 
 
 
   
-  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
-  Maven/
-  Shared 
Components/
-  Apache 
Maven Invoker/
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Shared 
Components/
+  Apache Maven 
Invoker/
 Surefire Report
-| 
Last Published: 2022-04-05
-  Version: 3.2.0
+| 
Last Published: 2024-05-07
+  Version: 3.3.0
   
 
   
@@ -61,53 +69,47 @@
 Project Information
 Project Reports
  
-  Surefire 
Report
+  Surefire
   Checkstyle
-  CPD
   PMD
   Source Xref
   Test Source Xref
   Tag List
   Javadoc
-  Test Javadoc
  
Maven Projects
-Archetype
-Artifact Resolver
-Doxia
-Extensions
-JXR
 Maven
+Archetypes
+Extensions
 Parent POMs
 Plugins
-Plugin Testing
-Plugin Tools
-Resource Bundles
-SCM
-Shared Components
 Skins
-Surefire
-Wagon
+
+ 
+  Archetype
+  Artifact Resolver
+  Doxia
+  Indexer
+  JXR
+  Plugin Testing
+  Plugin Tools
+  Resource Bundles
+  SCM
+  Shared Components
+  Surefire
+  Wagon
+ 
ASF
 https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
 https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://privacy.apache.org/policies/privacy-policy-public.html; 
class="externalLink" title="Data Privacy">Data 
Privacy
 https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
 https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
   
   
   
-https://www.google.com/search; method="get" >
-  
-  
-
-asyncJs( 'https://cse.google.com/brand?form=search-form' )
-
 
   
-
-https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
-!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
-
   
   
 http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
@@ -115,8 +117,7 @@
   
 
 
-
-//
 function toggleDisplay(elementId) {
  var elm = document.getElementById(elementId + '-error');
  if (elm == null) {
@@ -130,15 +131,13 @@ function toggleDisplay(elementId) {
   } else if (elm.style.display == "") {   elm.style.display = "none";

svn commit: r1917561 [27/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Propchange: 
maven/website/components/shared-archives/maven-invoker-LATEST/js/apache-maven-fluido-1.11.2.min.js
--
svn:eol-style = native

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/mailing-lists.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/mailing-lists.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/mailing-lists.html
 Tue May  7 20:53:44 2024
@@ -1,7 +1,9 @@
 
+
+
 
 http://www.w3.org/1999/xhtml; lang="en">
   
@@ -9,40 +11,46 @@
 
 
 Apache Maven Invoker  Project Mailing Lists
-
+
 
 
-
-
+
+
+
 
-  
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-  ga('create', 'UA-140879-1', 'auto');
-  ga('send', 'pageview');
-  ga('set', 'anonymizeIp', true);
-  ga('set', 'forceSSL', true);
+var _paq = window._paq = window._paq || [];
+_paq.push(['disableCookies']);
+_paq.push(['trackPageView']);
+_paq.push(['enableLinkTracking']);
+
+(function() {
+var u="https://analytics.apache.org/";;
+_paq.push(['setTrackerUrl', u+'/matomo.php']);
+_paq.push(['setSiteId', '3']);
+var d=document, g=d.createElement('script'), 
s=d.getElementsByTagName('script')[0];
+g.async=true; g.src=u+'/matomo.js'; s.parentNode.insertBefore(g,s);
+})();
 
+
   
   
 
   
 
-  https://www.apache.org/; 
id="bannerLeft">
-  
+  https://www.apache.org/; 
id="bannerLeft">
+  
   
 
 
 
   
-  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
-  Maven/
-  Shared 
Components/
-  Apache 
Maven Invoker/
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Shared 
Components/
+  Apache Maven 
Invoker/
 Project Mailing Lists
-| 
Last Published: 2022-04-05
-  Version: 3.2.0
+| 
Last Published: 2024-05-07
+  Version: 3.3.0
   
 
   
@@ -66,7 +74,7 @@
   Team
   Source Code Management
   Issue Management
-  Mailing 
Lists
+  Mailing Lists
   Dependency Management
   Dependencies
   Dependency Convergence
@@ -77,42 +85,38 @@
  
 Project Reports
Maven Projects
-Archetype
-Artifact Resolver
-Doxia
-Extensions
-JXR
 Maven
+Archetypes
+Extensions
 Parent POMs
 Plugins
-Plugin Testing
-Plugin Tools
-Resource Bundles
-SCM
-Shared Components
 Skins
-Surefire
-Wagon
+
+ 
+  Archetype
+  Artifact Resolver
+  Doxia
+  Indexer
+  JXR
+  Plugin Testing
+  Plugin Tools
+  Resource Bundles
+  SCM
+  Shared Components
+  Surefire
+  Wagon
+ 
ASF
 https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
 https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://privacy.apache.org/policies/privacy-policy-public.html; 
class="externalLink" title="Data Privacy">Data 
Privacy
 https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
 https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
   
   
   
-https://www.google.com/search; method="get" >
-  
-  
-
-asyncJs( 'https://cse.google.com/brand?form=search-form' )
-
 
   
-
-https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
-!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
-
   
   
 http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
@@ -139,11 +143,11 @@
 https://lists.apache.org/list.html?us...@maven.apache.org;>lists.apache.org
 

svn commit: r1917561 [15/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/SystemOutHandler.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/SystemOutHandler.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/SystemOutHandler.html
 Tue May  7 20:53:44 2024
@@ -1,275 +1,177 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+SystemOutHandler (Apache Maven Invoker 3.3.0 API)
+
 
-SystemOutHandler (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
-Constr|
-Method
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
+Constr|
 Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class SystemOutHandler
+Packageorg.apache.maven.shared.invoker
+Class SystemOutHandler
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.PrintStreamHandler
-
-
-org.apache.maven.shared.invoker.SystemOutHandler
-
-
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.PrintStreamHandler
+org.apache.maven.shared.invoker.SystemOutHandler
+
+
+
+
 All Implemented Interfaces:
-InvocationOutputHandler, 
org.apache.maven.shared.utils.cli.StreamConsumer
+InvocationOutputHandler, 
org.apache.maven.shared.utils.cli.StreamConsumer
 
 
-
-public class SystemOutHandler
-extends PrintStreamHandler
-Offers an output handler that writes to https://docs.oracle.com/javase/8/docs/api/java/lang/System.html?is-external=true#out;
 title="class or interface in java.lang">System.out.
-
-
-
-
-
-
+public class SystemOutHandler
+extends PrintStreamHandler
+Offers an output handler that writes to https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#out; 
title="class or interface in java.lang" 
class="external-link">System.out.
+
+
+
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-SystemOutHandler()
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+SystemOutHandler()
+
 Creates a new output handler.
-
-
-
-SystemOutHandler(booleanalwaysFlush)
+
+SystemOutHandler(booleanalwaysFlush)
+
 Creates a new output handler.
-
-
-
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from classorg.apache.maven.shared.invoker.PrintStreamHandler
-consumeLine
-
-
-
-
-
-Methods inherited from classjava.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--;
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-;
 title="class or interface in java.lang">equals, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--;
 title="class or interface in java.lang">finalize, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--;
 title="class or interface in java.lang">getClass, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--;
 title="class or interface in java.lang">hashCode, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--;
 title="class or interface in java.lang">notify, https://docs.oracle.com/javase/8/docs/api/ja
 va/lang/Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--;
 title="class or interface in java.lang">toString, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--;
 title="class or 

svn commit: r1917561 [30/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/taglist.html
==
--- maven/website/components/shared-archives/maven-invoker-LATEST/taglist.html 
(original)
+++ maven/website/components/shared-archives/maven-invoker-LATEST/taglist.html 
Tue May  7 20:53:44 2024
@@ -1,7 +1,9 @@
 
+
+
 
 http://www.w3.org/1999/xhtml; lang="en">
   
@@ -9,40 +11,46 @@
 
 
 Apache Maven Invoker  Tag List report
-
+
 
 
-
-
+
+
+
 
-  
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-   (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
-
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
-  ga('create', 'UA-140879-1', 'auto');
-  ga('send', 'pageview');
-  ga('set', 'anonymizeIp', true);
-  ga('set', 'forceSSL', true);
+var _paq = window._paq = window._paq || [];
+_paq.push(['disableCookies']);
+_paq.push(['trackPageView']);
+_paq.push(['enableLinkTracking']);
+
+(function() {
+var u="https://analytics.apache.org/";;
+_paq.push(['setTrackerUrl', u+'/matomo.php']);
+_paq.push(['setSiteId', '3']);
+var d=document, g=d.createElement('script'), 
s=d.getElementsByTagName('script')[0];
+g.async=true; g.src=u+'/matomo.js'; s.parentNode.insertBefore(g,s);
+})();
 
+
   
   
 
   
 
-  https://www.apache.org/; 
id="bannerLeft">
-  
+  https://www.apache.org/; 
id="bannerLeft">
+  
   
 
 
 
   
-  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
-  Maven/
-  Shared 
Components/
-  Apache 
Maven Invoker/
+  https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
+  Maven/
+  Shared 
Components/
+  Apache Maven 
Invoker/
 Tag List report
-| 
Last Published: 2022-04-05
-  Version: 3.2.0
+| 
Last Published: 2024-05-07
+  Version: 3.3.0
   
 
   
@@ -61,53 +69,47 @@
 Project Information
 Project Reports
  
-  Surefire Report
+  Surefire
   Checkstyle
-  CPD
   PMD
   Source Xref
   Test Source Xref
-  Tag 
List
+  Tag List
   Javadoc
-  Test Javadoc
  
Maven Projects
-Archetype
-Artifact Resolver
-Doxia
-Extensions
-JXR
 Maven
+Archetypes
+Extensions
 Parent POMs
 Plugins
-Plugin Testing
-Plugin Tools
-Resource Bundles
-SCM
-Shared Components
 Skins
-Surefire
-Wagon
+
+ 
+  Archetype
+  Artifact Resolver
+  Doxia
+  Indexer
+  JXR
+  Plugin Testing
+  Plugin Tools
+  Resource Bundles
+  SCM
+  Shared Components
+  Surefire
+  Wagon
+ 
ASF
 https://www.apache.org/foundation/how-it-works.html; 
class="externalLink" title="How Apache Works">How 
Apache Works
 https://www.apache.org/foundation/; class="externalLink" 
title="Foundation">Foundation
+https://privacy.apache.org/policies/privacy-policy-public.html; 
class="externalLink" title="Data Privacy">Data 
Privacy
 https://www.apache.org/foundation/sponsorship.html; 
class="externalLink" title="Sponsoring Apache">Sponsoring Apache
 https://www.apache.org/foundation/thanks.html; 
class="externalLink" title="Thanks">Thanks
   
   
   
-https://www.google.com/search; method="get" >
-  
-  
-
-asyncJs( 'https://cse.google.com/brand?form=search-form' )
-
 
   
-
-https://twitter.com/ASFMavenProject; 
class="twitter-follow-button" data-show-count="false" data-align="left" 
data-size="medium" data-show-screen-name="true" data-lang="en">Follow 
ASFMavenProject
-!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
-
   
   
 http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
@@ -125,7 +127,7 @@
 Tag strings used by tag class
 
 Deprecated Work
-4
+5
 @deprecated
 
 FIXME Work
@@ -137,23 +139,29 @@
 todo, @todo
 Each tag is detailed below:
 Deprecated 
Work
-Number of occurrences found in the code: 4
+Number of occurrences found in the code: 5
 
 
+org.apache.maven.shared.invoker.InvocationRequest
+Line
+
+simply {@link #addArg(String)} or {@link 

svn commit: r1917561 [14/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/PrintStreamLogger.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/PrintStreamLogger.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/PrintStreamLogger.html
 Tue May  7 20:53:44 2024
@@ -1,701 +1,533 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+PrintStreamLogger (Apache Maven Invoker 3.3.0 API)
+
 
-PrintStreamLogger (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
-Field|
-Constr|
-Method
+Field|
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
-Method
+Constr|
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class PrintStreamLogger
+Packageorg.apache.maven.shared.invoker
+Class PrintStreamLogger
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.PrintStreamLogger
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.PrintStreamLogger
+
+
+
 All Implemented Interfaces:
-InvokerLogger
+InvokerLogger
 
-
+
 Direct Known Subclasses:
-SystemOutLogger
+SystemOutLogger
 
 
-
-public class PrintStreamLogger
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-implements InvokerLogger
-Offers a logger that writes to a print stream like https://docs.oracle.com/javase/8/docs/api/java/lang/System.html?is-external=true#out;
 title="class or interface in java.lang">System.out.
-
-Since:
+public class PrintStreamLogger
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" class="external-link">Object
+implements InvokerLogger
+Offers a logger that writes to a print stream like https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#out; 
title="class or interface in java.lang" 
class="external-link">System.out.
+
+Since:
 2.0.9
 
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfaceorg.apache.maven.shared.invoker.InvokerLogger
-DEBUG,
 ERROR,
 FATAL,
 INFO,
 WARN
-
+
+
+Field Summary
+
+Fields
 inherited from interfaceorg.apache.maven.shared.invoker.InvokerLogger
+DEBUG, ERROR, FATAL, INFO, WARN
+
 
-
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-PrintStreamLogger()
-Creates a new logger that writes to https://docs.oracle.com/javase/8/docs/api/java/lang/System.html?is-external=true#out;
 title="class or interface in java.lang">System.out and has a 
threshold of InvokerLogger.INFO.
-
-
-
-PrintStreamLogger(https://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true;
 title="class or interface in java.io">PrintStreamout,
- intthreshold)
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+PrintStreamLogger()
+
+Creates a new logger that writes to https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#out; 
title="class or interface in java.lang" 
class="external-link">System.out and has a threshold of InvokerLogger.INFO.
+
+PrintStreamLogger(https://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html; 
title="class or interface in java.io" 
class="external-link">PrintStreamout,
+ intthreshold)
+
 Creates a new logger that writes to the 

svn commit: r1917561 [20/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/MavenInvocationException.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/MavenInvocationException.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/MavenInvocationException.html
 Tue May  7 20:53:44 2024
@@ -1,156 +1,86 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Class org.apache.maven.shared.invoker.MavenInvocationException 
(Apache Maven Invoker 3.3.0 API)
+
 
-Uses of Class org.apache.maven.shared.invoker.MavenInvocationException 
(Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Classorg.apache.maven.shared.invoker.MavenInvocationException
+Uses of 
Classorg.apache.maven.shared.invoker.MavenInvocationException
 
-
-
-
-
-
-
-
-Uses of MavenInvocationException 
in org.apache.maven.shared.invoker
-
-Methods in org.apache.maven.shared.invoker
 that throw MavenInvocationException
-
-Modifier and Type
-Method and Description
-
-
-
-InvocationResult
-Invoker.execute(InvocationRequestrequest)
+
+
+
+
+Uses of MavenInvocationException in org.apache.maven.shared.invoker
+Methods in org.apache.maven.shared.invoker that throw 
MavenInvocationException
+
+Modifier and Type
+Method
+Description
+InvocationResult
+DefaultInvoker.execute(InvocationRequestrequest)
+
 Executes Maven using the parameters specified by the given 
invocation request.
-
-
-
-InvocationResult
-DefaultInvoker.execute(InvocationRequestrequest)
+
+InvocationResult
+Invoker.execute(InvocationRequestrequest)
+
 Executes Maven using the parameters specified by the given 
invocation request.
-
-
-
-
-
-
+
+
+
 
 
+
+
+
+
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
-
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/PrintStreamHandler.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/PrintStreamHandler.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/PrintStreamHandler.html
 Tue May  7 20:53:44 2024
@@ -1,150 +1,81 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Class org.apache.maven.shared.invoker.PrintStreamHandler 
(Apache Maven Invoker 3.3.0 API)
+
 
-Uses of Class org.apache.maven.shared.invoker.PrintStreamHandler 
(Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Classorg.apache.maven.shared.invoker.InvocationRequest.ReactorFailureBehavior
+Uses of 
Enumorg.apache.maven.shared.invoker.InvocationRequest.ReactorFailureBehavior
 
-
-
-
-
-
-
-
-Uses of InvocationRequest.ReactorFailureBehavior 
in org.apache.maven.shared.invoker
-
-Methods in org.apache.maven.shared.invoker
 that return InvocationRequest.ReactorFailureBehavior
-
-Modifier and Type
-Method and Description
-
-
-
-InvocationRequest.ReactorFailureBehavior
-InvocationRequest.getReactorFailureBehavior()
-Gets the failure mode of the Maven invocation.
-
-
-
-InvocationRequest.ReactorFailureBehavior
-DefaultInvocationRequest.getReactorFailureBehavior()
+
+
+
+
+Uses of InvocationRequest.ReactorFailureBehavior 
in org.apache.maven.shared.invoker
+Methods in org.apache.maven.shared.invoker that return 
InvocationRequest.ReactorFailureBehavior
+
+Modifier and Type
+Method
+Description
+InvocationRequest.ReactorFailureBehavior
+DefaultInvocationRequest.getReactorFailureBehavior()
+
 getReactorFailureBehavior.
-
-
-
-static InvocationRequest.ReactorFailureBehavior
-InvocationRequest.ReactorFailureBehavior.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+
+InvocationRequest.ReactorFailureBehavior
+InvocationRequest.getReactorFailureBehavior()
+
+Gets the failure mode of the Maven invocation.
+
+static InvocationRequest.ReactorFailureBehavior
+InvocationRequest.ReactorFailureBehavior.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringname)
+
 Returns the enum constant of this type with the specified 
name.
-
-
-
-static InvocationRequest.ReactorFailureBehavior
-InvocationRequest.ReactorFailureBehavior.valueOfByLongOption(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringlongOption)
+
+static InvocationRequest.ReactorFailureBehavior
+InvocationRequest.ReactorFailureBehavior.valueOfByLongOption(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">StringlongOption)
+
 Returns the enumeration type which is related to the given 
long option.
-
-
-
-static InvocationRequest.ReactorFailureBehavior[]
-InvocationRequest.ReactorFailureBehavior.values()
+
+static InvocationRequest.ReactorFailureBehavior[]
+InvocationRequest.ReactorFailureBehavior.values()
+
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.
-
-
-
-
-
-Methods in org.apache.maven.shared.invoker
 with parameters of type InvocationRequest.ReactorFailureBehavior
-
-Modifier and Type
-Method and Description
-
-
-
-InvocationRequest
-InvocationRequest.setReactorFailureBehavior(InvocationRequest.ReactorFailureBehaviorfailureBehavior)
-Sets the failure mode of the Maven invocation.
-
-
-
-InvocationRequest
-DefaultInvocationRequest.setReactorFailureBehavior(InvocationRequest.ReactorFailureBehaviorfailureBehavior)
+
+
+Methods in org.apache.maven.shared.invoker with 
parameters of 

svn commit: r1917561 [12/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenCommandLineBuilder.html
 Tue May  7 20:53:44 2024
@@ -1,778 +1,603 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+MavenCommandLineBuilder (Apache Maven Invoker 3.3.0 API)
+
 
-MavenCommandLineBuilder (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
-Constr|
-Method
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
-Method
+Constr|
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class 
MavenCommandLineBuilder
+Packageorg.apache.maven.shared.invoker
+Class 
MavenCommandLineBuilder
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.MavenCommandLineBuilder
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.MavenCommandLineBuilder
+
+
 
-
-public class MavenCommandLineBuilder
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
+public class MavenCommandLineBuilder
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">Object
 MavenCommandLineBuilder class.
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-MavenCommandLineBuilder()
-
-
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+MavenCommandLineBuilder()
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-org.apache.maven.shared.utils.cli.Commandline
-build(InvocationRequestrequest)
+
+
+Method Summary
+
+All 
MethodsInstance MethodsConcrete 
Methods
+
+
+Modifier and Type
+Method
+Description
+org.apache.maven.shared.utils.cli.Commandline
+build(InvocationRequestrequest)
+
 build.
-
-
-
-protected void
-checkRequiredState()
+
+protected 
void
+checkRequiredState()
+
 checkRequiredState.
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true;
 title="class or interface in java.io">File
-getBaseDirectory()
+
+https://docs.oracle.com/javase/8/docs/api/java/io/File.html; title="class 
or interface in java.io" class="external-link">File
+getBaseDirectory()
+
 Getter for the field baseDirectory.
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true;
 title="class or interface in java.io">File
-getLocalRepositoryDirectory()
+
+https://docs.oracle.com/javase/8/docs/api/java/io/File.html; title="class 
or interface in java.io" class="external-link">File
+getLocalRepositoryDirectory()
+
 Getter for the field 
localRepositoryDirectory.
-
-
-
-InvokerLogger
-getLogger()
+
+InvokerLogger
+getLogger()
+
 Getter for the field logger.
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true;
 title="class or interface in java.io">File
-getMavenExecutable()
+
+https://docs.oracle.com/javase/8/docs/api/java/io/File.html; title="class 
or interface in java.io" 

svn commit: r1917561 [7/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvoker.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvoker.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvoker.html
 Tue May  7 20:53:44 2024
@@ -1,658 +1,505 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+DefaultInvoker (Apache Maven Invoker 3.3.0 API)
+
 
-DefaultInvoker (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
+
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
+
+
+
+Detail:
+
+Field
+Constr
+Method
+
+
 
 
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
+
+
+
 Summary:
 Nested|
-Field|
-Constr|
-Method
+Field|
+Constr|
+Method
 
-
+
 Detail:
-Field|
-Constr|
-Method
+Field|
+Constr|
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class DefaultInvoker
+Packageorg.apache.maven.shared.invoker
+Class DefaultInvoker
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.DefaultInvoker
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.DefaultInvoker
+
+
+
 All Implemented Interfaces:
-Invoker
+Invoker
 
 
-
-@Named
- @Singleton
-public class DefaultInvoker
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-implements Invoker
+@Named
+@Singleton
+public class DefaultInvoker
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" class="external-link">Object
+implements Invoker
 Class intended to be used by clients who wish to invoke a 
forked Maven process from their applications
-
-Author:
+
+Author:
 jdcasey
 
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-ROLE_HINT
+
+
+Field Summary
+Fields
+
+Modifier and Type
+Field
+Description
+static final https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">String
+ROLE_HINT
+
 Constant ROLE_HINT="default"
-
-
-
-
-
-
-
-Fields inherited from interfaceorg.apache.maven.shared.invoker.Invoker
-ROLE
-
+
+
+
+Fields 
inherited from interfaceorg.apache.maven.shared.invoker.Invoker
+ROLE
+
 
-
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-DefaultInvoker()
-
-
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+DefaultInvoker()
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-InvocationResult
-execute(InvocationRequestrequest)
+
+
+Method Summary
+
+All 
MethodsInstance MethodsConcrete 
Methods
+
+
+Modifier and Type
+Method
+Description
+InvocationResult
+execute(InvocationRequestrequest)
+
 Executes Maven using the parameters specified by the given 
invocation request.
-
-
-
-https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true;
 title="class or interface in java.io">File
-getLocalRepositoryDirectory()
+
+https://docs.oracle.com/javase/8/docs/api/java/io/File.html; title="class 
or interface in java.io" class="external-link">File
+getLocalRepositoryDirectory()
+
 Getter for the field 
localRepositoryDirectory.
-
-
-
-InvokerLogger
-getLogger()
+
+InvokerLogger

svn commit: r1917561 [10/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationResult.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationResult.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationResult.html
 Tue May  7 20:53:44 2024
@@ -1,258 +1,176 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+InvocationResult (Apache Maven Invoker 3.3.0 API)
+
 
-InvocationResult (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = {"i0":6,"i1":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
 Constr|
-Method
+Method
 
-
+
 Detail:
 Field|
 Constr|
-Method
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Interface 
InvocationResult
+Packageorg.apache.maven.shared.invoker
+Interface 
InvocationResult
 
-
-
-
-
-
+
+
 All Known Implementing Classes:
-DefaultInvocationResult
+DefaultInvocationResult
 
 
-
-public interface InvocationResult
+public interface 
InvocationResult
 Describes the result of a Maven invocation.
-
-Author:
+
+Author:
 jdcasey
 
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsAbstract Methods
-
-Modifier and Type
-Method and Description
-
-
-org.apache.maven.shared.utils.cli.CommandLineException
-getExecutionException()
+
+
+Method Summary
+
+All 
MethodsInstance MethodsAbstract 
Methods
+
+
+Modifier and Type
+Method
+Description
+org.apache.maven.shared.utils.cli.CommandLineException
+getExecutionException()
+
 Gets the exception that possibly occurred during the 
execution of the command line.
-
-
-
-int
-getExitCode()
+
+int
+getExitCode()
+
 Gets the exit code from the Maven invocation.
-
-
-
-
-
+
+
+
+
+
 
 
-
-
-
-
+
+
+
 
-
-
-
-
-Method Detail
-
-
-
-
-
-getExecutionException
-org.apache.maven.shared.utils.cli.CommandLineExceptiongetExecutionException()
+
+
+Method Details
+
+
+
+getExecutionException
+org.apache.maven.shared.utils.cli.CommandLineExceptiongetExecutionException()
 Gets the exception that possibly occurred during the 
execution of the command line.
-
-Returns:
+
+Returns:
 The exception that prevented to invoke Maven or null if the 
command line was successfully
  processed by the operating system.
 
+
 
-
-
-
-
-
-
-getExitCode
-intgetExitCode()
+
+
+getExitCode
+intgetExitCode()
 Gets the exit code from the Maven invocation. A non-zero 
value indicates a build failure. Note:
- This value is undefined if getExecutionException()
 reports an exception.
-
-Returns:
+ This value is undefined if getExecutionException() 
reports an exception.
+
+Returns:
 The exit code from the Maven invocation.
 
+
 
 
+
 
 
-
-
-
-
+
 
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
+
+
+
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
-
-
-Summary:
-Nested|
-Field|
-Constr|
-Method
-
-
-Detail:
-Field|
-Constr|
-Method
-
 
-
-
-
-
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/Invoker.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/Invoker.html
 (original)

svn commit: r1917561 [18/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/InvocationRequest.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/InvocationRequest.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/InvocationRequest.html
 Tue May  7 20:53:44 2024
@@ -1,735 +1,589 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Interface org.apache.maven.shared.invoker.InvocationRequest 
(Apache Maven Invoker 3.3.0 API)
+
 
-Uses of Interface org.apache.maven.shared.invoker.InvocationRequest 
(Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Interfaceorg.apache.maven.shared.invoker.InvocationRequest
+Uses of 
Interfaceorg.apache.maven.shared.invoker.InvocationRequest
 
-
-
-
-
-
-
-
-Uses of InvocationRequest in 
org.apache.maven.shared.invoker
-
-Classes in org.apache.maven.shared.invoker
 that implement InvocationRequest
-
-Modifier and Type
-Class and Description
-
-
-
-class
-DefaultInvocationRequest
+
+
+
+
+Uses of InvocationRequest in org.apache.maven.shared.invoker
+Classes in org.apache.maven.shared.invoker that 
implement InvocationRequest
+
+Modifier and Type
+Class
+Description
+class
+DefaultInvocationRequest
+
 Specifies the parameters used to control a Maven 
invocation.
-
-
-
-
-
-Methods in org.apache.maven.shared.invoker
 that return InvocationRequest
-
-Modifier and Type
-Method and Description
-
-
-
-InvocationRequest
-InvocationRequest.addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringarg)
-Add a raw  argument to Maven  cli command at the end of 
other arguments.
-
-
-
-InvocationRequest
-DefaultInvocationRequest.addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringarg)
-
-
-InvocationRequest
-InvocationRequest.addShellEnvironment(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname,
-   https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringvalue)
+
+
+Methods in org.apache.maven.shared.invoker that return 
InvocationRequest
+
+Modifier and Type
+Method
+Description
+InvocationRequest
+DefaultInvocationRequest.addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringarg)
+
+InvocationRequest
+InvocationRequest.addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringarg)
+
+Add a raw argument to Maven cli command at the end of other 
arguments.
+
+InvocationRequest
+DefaultInvocationRequest.addArgs(https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html; 
title="class or interface in java.util" 
class="external-link">Collectionhttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringargs)
+
+InvocationRequest
+InvocationRequest.addArgs(https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html; 
title="class or interface in java.util" 
class="external-link">Collectionhttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringargs)
+
+Add a raw arguments list to Maven cli command at the end of 
other arguments.
+
+InvocationRequest
+DefaultInvocationRequest.addShellEnvironment(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringname,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringvalue)
+
 Adds 

svn commit: r1917561 [9/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.html
 Tue May  7 20:53:44 2024
@@ -1,1710 +1,1502 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+InvocationRequest (Apache Maven Invoker 3.3.0 API)
+
 
-InvocationRequest (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
+
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
-Nested|
-Field|
+Nested|
+Field|
 Constr|
-Method
+Method
 
-
+
 Detail:
-Field|
+Field|
 Constr|
-Method
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Interface 
InvocationRequest
+Packageorg.apache.maven.shared.invoker
+Interface 
InvocationRequest
 
-
-
-
-
-
+
+
 All Known Implementing Classes:
-DefaultInvocationRequest
+DefaultInvocationRequest
 
 
-
-public interface InvocationRequest
+public interface 
InvocationRequest
 Specifies the parameters used to control a Maven 
invocation.
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Nested Class Summary
-
-Nested Classes
-
-Modifier and Type
-Interface and Description
-
-
-static class
-InvocationRequest.CheckSumPolicy
+
+
+Nested Class Summary
+Nested Classes
+
+Modifier and Type
+Interface
+Description
+static enum
+InvocationRequest.CheckSumPolicy
+
 The kind of checksum policy which should be used during 
Maven invocation.
-
-
-
-static class
-InvocationRequest.ReactorFailureBehavior
+
+static enum
+InvocationRequest.ReactorFailureBehavior
+
 The reactor failure behavior which to be used during Maven 
invocation.
-
-
-
+
+
+
 
-
 
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static int
-NO_TIMEOUT
+
+
+Field Summary
+Fields
+
+Modifier and Type
+Field
+Description
+static final int
+NO_TIMEOUT
+
 Constant NO_TIMEOUT=0
-
-
-
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsAbstract Methods
-
-Modifier and Type
-Method and Description
-
-
-InvocationRequest
-addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringarg)
-Add a raw  argument to Maven  cli command at the end of 
other arguments.
-
-
-
-InvocationRequest
-addShellEnvironment(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname,
-   https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringvalue)
+
+
+Method Summary
+
+All 
MethodsInstance MethodsAbstract 
MethodsDeprecated Methods
+
+
+Modifier and Type
+Method
+Description
+InvocationRequest
+addArg(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringarg)
+
+Add a raw argument to Maven cli command at the end of other 
arguments.
+
+InvocationRequest

svn commit: r1917561 [11/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvokerLogger.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvokerLogger.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvokerLogger.html
 Tue May  7 20:53:44 2024
@@ -1,701 +1,560 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+InvokerLogger (Apache Maven Invoker 3.3.0 API)
+
 
-InvokerLogger (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
+
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
+
+
+
+Detail:
+
+Field
+Constr
+Method
+
+
 
 
-
-
-PrevClass
-NextClass
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
+
+
+
 Summary:
 Nested|
-Field|
+Field|
 Constr|
-Method
+Method
 
-
+
 Detail:
-Field|
+Field|
 Constr|
-Method
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Interface InvokerLogger
+Packageorg.apache.maven.shared.invoker
+Interface InvokerLogger
 
-
-
-
-
-
+
+
 All Known Implementing Classes:
-PrintStreamLogger, SystemOutLogger
+PrintStreamLogger, SystemOutLogger
 
 
-
-public interface InvokerLogger
-A logger used by Invoker 
instances to output diagnostic messages.
-
-Author:
+public interface 
InvokerLogger
+A logger used by Invoker instances to output 
diagnostic messages.
+
+Author:
 mailto:ja...@maven.org;>Jason van Zyl
-See Also:
-Invoker.setLogger(InvokerLogger)
-
-
-
-
-
-
-
+See Also:
+
+
+Invoker.setLogger(InvokerLogger)
+
+
+
+
+
+
 
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static int
-DEBUG
+
+
+Field Summary
+Fields
+
+Modifier and Type
+Field
+Description
+static final int
+DEBUG
+
 The threshold for debug output.
-
-
-
-static int
-ERROR
+
+static final int
+ERROR
+
 The threshold for error output.
-
-
-
-static int
-FATAL
+
+static final int
+FATAL
+
 The threshold for fatal error output.
-
-
-
-static int
-INFO
+
+static final int
+INFO
+
 The threshold for info output.
-
-
-
-static int
-WARN
+
+static final int
+WARN
+
 The threshold for warn output.
-
-
-
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsAbstract Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-debug(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage)
+
+
+Method Summary
+
+All 
MethodsInstance MethodsAbstract 
Methods
+
+
+Modifier and Type
+Method
+Description
+void
+debug(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringmessage)
+
 Logs the specified debug message.
-
-
-
-void
-debug(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage,
- https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwablethrowable)
+
+void
+debug(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringmessage,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html; 
title="class or interface in java.lang" 
class="external-link">Throwablethrowable)
+
 Logs the specified debug message and the accompanying 
exception.
-
-
-
-void
-error(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage)
+
+void
+error(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringmessage)
+
 Logs the specified error message.
-
-
-
-void

svn commit: r1917561 [5/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationRequest.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationRequest.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationRequest.html
 Tue May  7 20:53:44 2024
@@ -1,1642 +1,1446 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+DefaultInvocationRequest (Apache Maven Invoker 3.3.0 API)
+
 
-DefaultInvocationRequest (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
-Nested|
-Field|
-Constr|
-Method
+Nested|
+Field|
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
-Method
+Constr|
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class 
DefaultInvocationRequest
+Packageorg.apache.maven.shared.invoker
+Class 
DefaultInvocationRequest
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.DefaultInvocationRequest
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.DefaultInvocationRequest
+
+
+
 All Implemented Interfaces:
-InvocationRequest
+InvocationRequest
 
 
-
-public class DefaultInvocationRequest
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-implements InvocationRequest
+public class DefaultInvocationRequest
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" class="external-link">Object
+implements InvocationRequest
 Specifies the parameters used to control a Maven 
invocation.
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interfaceorg.apache.maven.shared.invoker.InvocationRequest
-InvocationRequest.CheckSumPolicy, InvocationRequest.ReactorFailureBehavior
-
+
+
+Nested Class Summary
+
+Nested
 classes/interfaces inherited from 
interfaceorg.apache.maven.shared.invoker.InvocationRequest
+InvocationRequest.CheckSumPolicy, InvocationRequest.ReactorFailureBehavior
+
 
-
 
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interfaceorg.apache.maven.shared.invoker.InvocationRequest
-NO_TIMEOUT
-
+
+
+Field Summary
+
+Fields
 inherited from interfaceorg.apache.maven.shared.invoker.InvocationRequest
+NO_TIMEOUT
+
 
-
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-DefaultInvocationRequest()
-
-
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+DefaultInvocationRequest()
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-InvocationRequest

svn commit: r1917561 [6/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationResult.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationResult.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/DefaultInvocationResult.html
 Tue May  7 20:53:44 2024
@@ -1,273 +1,182 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+DefaultInvocationResult (Apache Maven Invoker 3.3.0 API)
+
 
-DefaultInvocationResult (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
 Constr|
-Method
+Method
 
-
+
 Detail:
 Field|
 Constr|
-Method
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class 
DefaultInvocationResult
+Packageorg.apache.maven.shared.invoker
+Class 
DefaultInvocationResult
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.maven.shared.invoker.DefaultInvocationResult
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+org.apache.maven.shared.invoker.DefaultInvocationResult
+
+
+
 All Implemented Interfaces:
-InvocationResult
+InvocationResult
 
 
-
-public final class DefaultInvocationResult
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-implements InvocationResult
+public final class 
DefaultInvocationResult
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" class="external-link">Object
+implements InvocationResult
 Describes the result of a Maven invocation.
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Method Summary
-
-All MethodsInstance MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-org.apache.maven.shared.utils.cli.CommandLineException
-getExecutionException()
+
+
+Method Summary
+
+All 
MethodsInstance MethodsConcrete 
Methods
+
+
+Modifier and Type
+Method
+Description
+org.apache.maven.shared.utils.cli.CommandLineException
+getExecutionException()
+
 Getter for the field executionException.
-
-
-
-int
-getExitCode()
+
+int
+getExitCode()
+
 Getter for the field exitCode.
-
-
-
-
-
-
-
-Methods inherited from classjava.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--;
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-;
 title="class or interface in java.lang">equals, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--;
 title="class or interface in java.lang">finalize, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--;
 title="class or interface in java.lang">getClass, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--;
 title="class or interface in java.lang">hashCode, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--;
 title="class or interface in java.lang">notify, https://docs.oracle.com/javase/8/docs/api/ja
 va/lang/Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--;
 title="class or interface in 

svn commit: r1917561 [3/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index.html
 Tue May  7 20:53:44 2024
@@ -1,73 +1,25 @@
-http://www.w3.org/TR/html4/frameset.dtd;>
-
+
 
 
-
+
+Apache Maven Invoker 3.3.0 API
+
 
-Apache Maven Invoker 3.2.0 API
-
-tmpTargetPage = "" + window.location.search;
-if (tmpTargetPage != "" && tmpTargetPage != "undefined")
-tmpTargetPage = tmpTargetPage.substring(1);
-if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && 
!validURL(tmpTargetPage)))
-tmpTargetPage = "undefined";
-targetPage = tmpTargetPage;
-function validURL(url) {
-try {
-url = decodeURIComponent(url);
-}
-catch (error) {
-return false;
-}
-var pos = url.indexOf(".html");
-if (pos == -1 || pos != url.length - 5)
-return false;
-var allowNumber = false;
-var allowSep = false;
-var seenDot = false;
-for (var i = 0; i < url.length - 5; i++) {
-var ch = url.charAt(i);
-if ('a' <= ch && ch <= 'z' ||
-'A' <= ch && ch <= 'Z' ||
-ch == '$' ||
-ch == '_' ||
-ch.charCodeAt(0) > 127) {
-allowNumber = true;
-allowSep = true;
-} else if ('0' <= ch && ch <= '9'
-|| ch == '-') {
-if (!allowNumber)
- return false;
-} else if (ch == '/' || ch == '.') {
-if (!allowSep)
-return false;
-allowNumber = false;
-allowSep = false;
-if (ch == '.')
- seenDot = true;
-if (ch == '/' && seenDot)
- return false;
-} else {
-return false;
-}
-}
-return true;
-}
-function loadFrames() {
-if (targetPage != "" && targetPage != "undefined")
- top.classFrame.location = top.targetPage;
-}
-
+
+
+
+
+window.location.replace('org/apache/maven/shared/invoker/package-summary.html')
+
+
+
 
-
-
-
-
+
+
 
-JavaScript is disabled on your browser.
+JavaScript is disabled on your browser.
 
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see 
this message, you are using a non-frame-capable web client. Link to Non-frame 
version.
-
-
+org/apache/maven/shared/invoker/package-summary.html
+
+
 
\ No newline at end of file

Added: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/ADDITIONAL_LICENSE_INFO
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/ADDITIONAL_LICENSE_INFO
 (added)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/ADDITIONAL_LICENSE_INFO
 Tue May  7 20:53:44 2024
@@ -0,0 +1,37 @@
+  ADDITIONAL INFORMATION ABOUT LICENSING
+
+Certain files distributed by Oracle America, Inc. and/or its affiliates are 
+subject to the following clarification and special exception to the GPLv2, 
+based on the GNU Project exception for its Classpath libraries, known as the 
+GNU Classpath Exception.
+
+Note that Oracle includes multiple, independent programs in this software 
+package.  Some of those programs are provided under licenses deemed 
+incompatible with the GPLv2 by the Free Software Foundation and others. 
+For example, the package includes programs licensed under the Apache 
+License, Version 2.0 and may include FreeType. Such programs are licensed 
+to you under their original licenses. 
+
+Oracle facilitates your further distribution of this package by adding the 
+Classpath Exception to the necessary parts of its GPLv2 code, which permits 
+you to use that code in combination with other independent modules not 
+licensed under the GPLv2. However, note that this would not permit you to 
+commingle code under an incompatible license with Oracle's GPLv2 licensed 
+code by, for example, cutting and pasting such code into a file also 
+containing Oracle's GPLv2 licensed code and then distributing the result. 
+
+Additionally, if you were to remove the Classpath Exception from any of the 
+files to which it applies and distribute the result, you would likely be 
+required to license some or all of the other code in that distribution under 
+the GPLv2 as well, and since the GPLv2 is incompatible with the license terms 
+of some items included in the distribution by Oracle, removing the Classpath 
+Exception could therefore effectively compromise your ability to further 

svn commit: r1917561 [4/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/CommandLineConfigurationException.html
 Tue May  7 20:53:44 2024
@@ -1,291 +1,194 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+CommandLineConfigurationException (Apache Maven Invoker 3.3.0 
API)
+
 
-CommandLineConfigurationException (Apache Maven Invoker 3.2.0 
API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
-Constr|
-Method
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
+Constr|
 Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class 
CommandLineConfigurationException
+Packageorg.apache.maven.shared.invoker
+Class 
CommandLineConfigurationException
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">java.lang.Throwable
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">java.lang.Exception
-
-
-org.apache.maven.shared.invoker.CommandLineConfigurationException
-
-
-
-
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Throwable
+https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Exception
+org.apache.maven.shared.invoker.CommandLineConfigurationException
+
+
+
+
+
 All Implemented Interfaces:
-https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html; 
title="class or interface in java.io" 
class="external-link">Serializable
 
 
-
-public class CommandLineConfigurationException
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">Exception
+public class CommandLineConfigurationException
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html; 
title="class or interface in java.lang" 
class="external-link">Exception
 Signals an error during the construction of the command 
line used to invoke Maven.
-
-See Also:
-Serialized
 Form
-
-
+
+See Also:
+
+
+Serialized
 Form
 
-
-
-
-
+
+
+
+
+
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-CommandLineConfigurationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage)
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+CommandLineConfigurationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringmessage)
+
 Creates a new exception using the specified detail 
message.
-
-
-
-CommandLineConfigurationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage,
- https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwablecause)
+
+CommandLineConfigurationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface 

svn commit: r1917561 [1/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Author: sjaranowski
Date: Tue May  7 20:53:44 2024
New Revision: 1917561

Log:
Site checkin for project Apache Maven Invoker

Added:

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/allclasses-index.html
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/allpackages-index.html
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/copy.svg  
 (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/element-list
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/ADDITIONAL_LICENSE_INFO

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/ASSEMBLY_EXCEPTION

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/LICENSE
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/jquery.md

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/legal/jqueryUI.md

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/link.svg  
 (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/member-search-index.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/module-search-index.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/UpdateSnapshotsPolicy.html
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/UpdateSnapshotsPolicy.html
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/package-search-index.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/resources/

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/resources/glass.png
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/resources/x.png
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/script-dir/

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/script-dir/jquery-3.6.1.min.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/script-dir/jquery-ui.min.css
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/script-dir/jquery-ui.min.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/search-page.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/search.html
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/search.js 
  (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/tag-search-index.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/type-search-index.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/css/apache-maven-fluido-1.11.2.min.css
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/js/apache-maven-fluido-1.11.2.min.js
   (with props)

maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/UpdateSnapshotsPolicy.html
   (with props)
Removed:

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/allclasses-frame.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/allclasses-noframe.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/package-frame.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/package-list
maven/website/components/shared-archives/maven-invoker-LATEST/checkstyle.rss
maven/website/components/shared-archives/maven-invoker-LATEST/cpd.html

maven/website/components/shared-archives/maven-invoker-LATEST/css/apache-maven-fluido-1.9.min.css

maven/website/components/shared-archives/maven-invoker-LATEST/js/apache-maven-fluido-1.9.min.js
maven/website/components/shared-archives/maven-invoker-LATEST/testapidocs/
Modified:

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/constant-values.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/deprecated-list.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/help-doc.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index-all.html

maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index.html


svn commit: r1917561 [16/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvocationResult.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvocationResult.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvocationResult.html
 Tue May  7 20:53:44 2024
@@ -1,123 +1,61 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Class org.apache.maven.shared.invoker.DefaultInvocationResult 
(Apache Maven Invoker 3.3.0 API)
+
 
-Uses of Class org.apache.maven.shared.invoker.DefaultInvocationResult 
(Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Classorg.apache.maven.shared.invoker.DefaultInvocationResult
+Uses of 
Classorg.apache.maven.shared.invoker.DefaultInvocationResult
+
+No usage of org.apache.maven.shared.invoker.DefaultInvocationResult
+
+
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
-No usage of 
org.apache.maven.shared.invoker.DefaultInvocationResult
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
-
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvoker.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvoker.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/DefaultInvoker.html
 Tue May  7 20:53:44 2024
@@ -1,123 +1,61 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Class org.apache.maven.shared.invoker.DefaultInvoker (Apache 
Maven Invoker 3.3.0 API)
+
 
-Uses of Class org.apache.maven.shared.invoker.DefaultInvoker (Apache 
Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Classorg.apache.maven.shared.invoker.DefaultInvoker
+Uses of 
Classorg.apache.maven.shared.invoker.DefaultInvoker
+
+No usage of org.apache.maven.shared.invoker.DefaultInvoker
+
+
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
-No usage of 
org.apache.maven.shared.invoker.DefaultInvoker
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
-Uses of 
Interfaceorg.apache.maven.shared.invoker.InvocationResult
+Uses of 
Interfaceorg.apache.maven.shared.invoker.InvocationResult
 
-
-
-
-
-
-
-
-Uses of InvocationResult in org.apache.maven.shared.invoker
-
-Classes in org.apache.maven.shared.invoker
 that implement InvocationResult
-
-Modifier and Type
-Class and Description
-
-
-
-class
-DefaultInvocationResult
+
+
+
+
+Uses of InvocationResult in org.apache.maven.shared.invoker
+Classes in org.apache.maven.shared.invoker that 
implement InvocationResult
+
+Modifier and Type
+Class
+Description
+final class
+DefaultInvocationResult
+
 Describes the result of a Maven invocation.
-
-
-
-
-
-Methods in org.apache.maven.shared.invoker
 that return InvocationResult
-
-Modifier and Type
-Method and Description
-
-
-
-InvocationResult
-Invoker.execute(InvocationRequestrequest)
+
+
+Methods in org.apache.maven.shared.invoker that return 
InvocationResult
+
+Modifier and Type
+Method
+Description
+InvocationResult
+DefaultInvoker.execute(InvocationRequestrequest)
+
 Executes Maven using the parameters specified by the given 
invocation request.
-
-
-
-InvocationResult
-DefaultInvoker.execute(InvocationRequestrequest)
+
+InvocationResult
+Invoker.execute(InvocationRequestrequest)
+
 Executes Maven using the parameters specified by the given 
invocation request.
-
-
-
-
-
-
+
+
+
 
 
+
+
+
+
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
 
-
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
-
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/Invoker.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/Invoker.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/class-use/Invoker.html
 Tue May  7 20:53:44 2024
@@ -1,263 +1,175 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Uses of Interface org.apache.maven.shared.invoker.Invoker (Apache Maven 
Invoker 3.3.0 API)
+
 
-Uses of Interface org.apache.maven.shared.invoker.Invoker (Apache Maven 
Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
-Use
+
+Skip navigation links
+
+Package
+Class
+Use
 Tree
 Deprecated
 

svn commit: r1917561 [21/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/package-tree.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/package-tree.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/package-tree.html
 Tue May  7 20:53:44 2024
@@ -1,101 +1,80 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+org.apache.maven.shared.invoker Class Hierarchy (Apache Maven Invoker 
3.3.0 API)
+
 
-org.apache.maven.shared.invoker Class Hierarchy (Apache Maven Invoker 
3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
+
+Skip navigation links
+
+Package
 Class
 Use
-Tree
+Tree
 Deprecated
 Index
-Help
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
-
-
-
-
+
+
+SEARCH
+
+
+
+
 
+
+
+
+
 
 Hierarchy For Package org.apache.maven.shared.invoker
 
-
+
 Class Hierarchy
 
-java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
+java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
class="type-name-link external-link" title="class or interface in 
java.lang">Object
 
-org.apache.maven.shared.invoker.DefaultInvocationRequest (implements 
org.apache.maven.shared.invoker.InvocationRequest)
-org.apache.maven.shared.invoker.DefaultInvocationResult (implements 
org.apache.maven.shared.invoker.InvocationResult)
-org.apache.maven.shared.invoker.DefaultInvoker (implements 
org.apache.maven.shared.invoker.Invoker)
-org.apache.maven.shared.invoker.MavenCommandLineBuilder
-org.apache.maven.shared.invoker.PrintStreamHandler (implements 
org.apache.maven.shared.invoker.InvocationOutputHandler)
+org.apache.maven.shared.invoker.DefaultInvocationRequest (implements 
org.apache.maven.shared.invoker.InvocationRequest)
+org.apache.maven.shared.invoker.DefaultInvocationResult (implements 
org.apache.maven.shared.invoker.InvocationResult)
+org.apache.maven.shared.invoker.DefaultInvoker (implements 
org.apache.maven.shared.invoker.Invoker)
+org.apache.maven.shared.invoker.MavenCommandLineBuilder
+org.apache.maven.shared.invoker.PrintStreamHandler (implements 
org.apache.maven.shared.invoker.InvocationOutputHandler)
 
-org.apache.maven.shared.invoker.SystemOutHandler
+org.apache.maven.shared.invoker.SystemOutHandler
 
 
-org.apache.maven.shared.invoker.PrintStreamLogger (implements 
org.apache.maven.shared.invoker.InvokerLogger)
+org.apache.maven.shared.invoker.PrintStreamLogger (implements 
org.apache.maven.shared.invoker.InvokerLogger)
 
-org.apache.maven.shared.invoker.SystemOutLogger
+org.apache.maven.shared.invoker.SystemOutLogger
 
 
-java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwable (implements java.io.https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
+java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html; 
class="type-name-link external-link" title="class or interface in 
java.lang">Throwable (implements java.io.https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html; 
title="class or interface in java.io" class="external-link">Serializable)
 
-java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">Exception
+java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html; 
class="type-name-link external-link" title="class or interface in 
java.lang">Exception
 
-org.apache.maven.shared.invoker.CommandLineConfigurationException
-org.apache.maven.shared.invoker.MavenInvocationException
+org.apache.maven.shared.invoker.CommandLineConfigurationException
+org.apache.maven.shared.invoker.MavenInvocationException
 
 
 
@@ -103,78 +82,43 @@
 
 
 
+
+
 Interface Hierarchy
 
-org.apache.maven.shared.invoker.InvocationRequest
-org.apache.maven.shared.invoker.InvocationResult
-org.apache.maven.shared.invoker.Invoker
-org.apache.maven.shared.invoker.InvokerLogger
-org.apache.maven.shared.utils.cli.StreamConsumer

svn commit: r1917561 [42/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenInvocationException.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenInvocationException.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/MavenInvocationException.html
 Tue May  7 20:53:44 2024
@@ -6,64 +6,58 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  /**
-23   * Signals an error during the construction of the 
command line used to invoke Maven, e.g. illegal invocation arguments.
-24   * This should not be confused with a failure of the 
invoked Maven build itself which will be reported by means of a
-25   * non-zero exit code.
-26   *
-27   * @see InvocationResult#getExitCode()
-28   */
-29  public class 
MavenInvocationException
-30  extends Exception
-31  {
-32  
-33  private static final 
long serialVersionUID = 1L;
-34  
-35  /**
-36   * Creates a new exception using the specified 
detail message and cause.
-37   *
-38   * @param message The detail message for this 
exception, may be codenull/code.
-39   * @param cause The nested exception, may be 
codenull/code.
-40   */
-41  public MavenInvocationException(
 String message, Throwable cause )
-42  {
-43  super( message, cause );
-44  }
-45  
-46  /**
-47   * Creates a new exception using the specified 
detail message.
-48   *
-49   * @param message The detail message for this 
exception, may be codenull/code.
-50   */
-51  public MavenInvocationException(
 String message )
-52  {
-53  super( message );
-54  }
-55  
-56  }
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  /**
+22   * Signals an error during the construction of the 
command line used to invoke Maven, e.g. illegal invocation arguments.
+23   * This should not be confused with a failure of the 
invoked Maven build itself which will be reported by means of a
+24   * non-zero exit code.
+25   *
+26   * @see InvocationResult#getExitCode()
+27   */
+28  public class 
MavenInvocationException
 extends Exception {
+29  
+30  private static final 
long serialVersionUID = 1L;
+31  
+32  /**
+33   * Creates a new exception using the specified 
detail message and cause.
+34   *
+35   * @param message The detail message for this 
exception, may be codenull/code.
+36   * @param cause The nested exception, may be 
codenull/code.
+37   */
+38  public MavenInvocationException(String
 message, Throwable cause) {
+39  super(message, cause);
+40  }
+41  
+42  /**
+43   * Creates a new exception using the specified 
detail message.
+44   *
+45   * @param message The detail message for this 
exception, may be codenull/code.
+46   */
+47  public 

svn commit: r1917561 [37/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvocationOutputHandler.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvocationOutputHandler.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/xref/org/apache/maven/shared/invoker/InvocationOutputHandler.html
 Tue May  7 20:53:44 2024
@@ -6,40 +6,37 @@
 
 
 View
 Javadoc
-1   package org.apache.maven.shared.invoker;
-2   
-3   /*
-4* Licensed to the Apache Software Foundation (ASF) under 
one
-5* or more contributor license agreements.  See the NOTICE 
file
-6* distributed with this work for additional 
information
-7* regarding copyright ownership.  The ASF licenses this 
file
-8* to you under the Apache License, Version 2.0 (the
-9* "License"); you may not use this file except in 
compliance
-10   * with the License.  You may obtain a copy of the License 
at
+1   /*
+2* Licensed to the Apache Software Foundation (ASF) under 
one
+3* or more contributor license agreements.  See the NOTICE 
file
+4* distributed with this work for additional 
information
+5* regarding copyright ownership.  The ASF licenses this 
file
+6* to you under the Apache License, Version 2.0 (the
+7* "License"); you may not use this file except in 
compliance
+8* with the License.  You may obtain a copy of the License 
at
+9*
+10   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
 11   *
-12   *   http://www.apache.org/licenses/LICENSE-2.0; 
target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0
-13   *
-14   * Unless required by applicable law or agreed to in 
writing,
-15   * software distributed under the License is distributed on 
an
-16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
-17   * KIND, either express or implied.  See the License for 
the
-18   * specific language governing permissions and 
limitations
-19   * under the License.
-20   */
-21  
-22  import 
org.apache.maven.shared.utils.cli.StreamConsumer;
-23  
-24  /**
-25   * Receives the standard/error output from a Maven 
invocation.
-26   *
-27   */
-28  public interface InvocationOutputHandler
-29  extends StreamConsumer
-30  {
-31  // empty by design
-32  }
+12   * Unless required by applicable law or agreed to in 
writing,
+13   * software distributed under the License is distributed on 
an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
ANY
+15   * KIND, either express or implied.  See the License for 
the
+16   * specific language governing permissions and 
limitations
+17   * under the License.
+18   */
+19  package org.apache.maven.shared.invoker;
+20  
+21  import 
org.apache.maven.shared.utils.cli.StreamConsumer;
+22  
+23  /**
+24   * Receives the standard/error output from a Maven 
invocation.
+25   *
+26   */
+27  public interface InvocationOutputHandler
 extends StreamConsumer {
+28  // empty by design
+29  }
 
 
-Copyright  20022022 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20022024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file




svn commit: r1917561 [13/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/in

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenInvocationException.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenInvocationException.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/MavenInvocationException.html
 Tue May  7 20:53:44 2024
@@ -1,294 +1,197 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+MavenInvocationException (Apache Maven Invoker 3.3.0 API)
+
 
-MavenInvocationException (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Field
+Constr
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Field
+Constr
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
 Field|
-Constr|
-Method
+Constr|
+Method
 
-
+
 Detail:
 Field|
-Constr|
+Constr|
 Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Class 
MavenInvocationException
+Packageorg.apache.maven.shared.invoker
+Class 
MavenInvocationException
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">java.lang.Throwable
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">java.lang.Exception
-
-
-org.apache.maven.shared.invoker.MavenInvocationException
-
-
-
-
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Throwable
+https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Exception
+org.apache.maven.shared.invoker.MavenInvocationException
+
+
+
+
+
 All Implemented Interfaces:
-https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html; 
title="class or interface in java.io" 
class="external-link">Serializable
 
 
-
-public class MavenInvocationException
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true;
 title="class or interface in java.lang">Exception
+public class MavenInvocationException
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html; 
title="class or interface in java.lang" 
class="external-link">Exception
 Signals an error during the construction of the command 
line used to invoke Maven, e.g. illegal invocation arguments.
  This should not be confused with a failure of the invoked Maven build itself 
which will be reported by means of a
  non-zero exit code.
-
-See Also:
-InvocationResult.getExitCode(),
 
-Serialized
 Form
-
-
+
+See Also:
+
+
+InvocationResult.getExitCode()
+Serialized
 Form
 
-
-
-
-
+
+
+
+
+
 
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-MavenInvocationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage)
+
+
+Constructor Summary
+Constructors
+
+Constructor
+Description
+MavenInvocationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html; 
title="class or interface in java.lang" 
class="external-link">Stringmessage)
+
 Creates a new exception using the specified detail 
message.
-
-
-
-MavenInvocationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringmessage,
-https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true;
 title="class or interface in java.lang">Throwablecause)
+

svn commit: r1917561 [8/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.CheckSumPolicy.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.CheckSumPolicy.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/org/apache/maven/shared/invoker/InvocationRequest.CheckSumPolicy.html
 Tue May  7 20:53:44 2024
@@ -1,351 +1,237 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+InvocationRequest.CheckSumPolicy (Apache Maven Invoker 3.3.0 
API)
+
 
-InvocationRequest.CheckSumPolicy (Apache Maven Invoker 3.2.0 
API)
+
+
 
+
 
+
+
 
-
-
-var methods = {"i0":9,"i1":9};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
+
+var pathtoroot = "../../../../../";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
-Package
-Class
+
+Skip navigation links
+
+Package
+Class
 Use
 Tree
 Deprecated
 Index
-Help
+Help
 
-
-
-
-PrevClass
-NextClass
+
+
+Summary:
+
+Nested
+Enum Constants
+Field
+Method
 
-
-Frames
-NoFrames
+
+
+Detail:
+
+Enum Constants
+Field
+Method
 
-
-AllClasses
+
 
-
-
-
 
-
-
+
+
+
 Summary:
 Nested|
-Enum Constants|
+Enum Constants|
 Field|
-Method
+Method
 
-
+
 Detail:
-Enum Constants|
+Enum Constants|
 Field|
-Method
+Method
 
 
-
-
-
+SEARCH
+
+
+
+
 
+
+
+
+
 
 
-org.apache.maven.shared.invoker
-Enum 
InvocationRequest.CheckSumPolicy
+Packageorg.apache.maven.shared.invoker
+Enum 
InvocationRequest.CheckSumPolicy
 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">java.lang.Object
-
-
-https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">java.lang.EnumInvocationRequest.CheckSumPolicy
-
-
-org.apache.maven.shared.invoker.InvocationRequest.CheckSumPolicy
-
-
-
-
-
-
-
-
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.Object
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html; 
title="class or interface in java.lang" 
class="external-link">java.lang.EnumInvocationRequest.CheckSumPolicy
+org.apache.maven.shared.invoker.InvocationRequest.CheckSumPolicy
+
+
+
+
 All Implemented Interfaces:
-https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableInvocationRequest.CheckSumPolicy
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html; 
title="class or interface in java.io" 
class="external-link">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html; 
title="class or interface in java.lang" 
class="external-link">ComparableInvocationRequest.CheckSumPolicy
 
-
+
 Enclosing interface:
-InvocationRequest
+InvocationRequest
 
 
-
-public static enum InvocationRequest.CheckSumPolicy
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumInvocationRequest.CheckSumPolicy
+public static enum 
InvocationRequest.CheckSumPolicy
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html; 
title="class or interface in java.lang" class="external-link">EnumInvocationRequest.CheckSumPolicy
 The kind of checksum policy which should be used during 
Maven invocation.
-
-
-
-
-
-
+
+
+
 
-
-
-
-
-Enum Constant Summary
-
-Enum Constants
-
-Enum Constant and Description
-
-
-Fail
+
+
+Enum Constant Summary
+Enum Constants
+
+Enum Constant
+Description
+Fail
+
 Strict checksum checking equivalent of 
--strict-checksums
-
-
-
-Warn
+
+Warn
+
 Warn checksum failures equivalent 
--lax-checksums.
-
-
-
+
+
+
 
-
 
-
-
-
-
-Method Summary
-
-All MethodsStatic MethodsConcrete Methods
-
-Modifier and Type
-Method and Description
-
-
-static InvocationRequest.CheckSumPolicy
-valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)

svn commit: r1917561 [2/44] - in /maven/website/components/shared-archives/maven-invoker-LATEST: ./ apidocs/ apidocs/legal/ apidocs/org/apache/maven/shared/invoker/ apidocs/org/apache/maven/shared/inv

2024-05-07 Thread sjaranowski
Modified: 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index-all.html
==
--- 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index-all.html
 (original)
+++ 
maven/website/components/shared-archives/maven-invoker-LATEST/apidocs/index-all.html
 Tue May  7 20:53:44 2024
@@ -1,1403 +1,1367 @@
-http://www.w3.org/TR/html4/loose.dtd;>
-
+
 
 
-
+
+Index (Apache Maven Invoker 3.3.0 API)
+
 
-Index (Apache Maven Invoker 3.2.0 API)
+
+
 
+
 
+
+
 
-
-
-
+
+var pathtoroot = "./";
+loadScripts(document, 'script');
 
 JavaScript is disabled on your browser.
 
+
+
+
 
-
-
-
-Skip navigation links
-
-
-
-
+
+Skip navigation links
+
 Package
 Class
 Use
 Tree
 Deprecated
-Index
-Help
+Index
+Help
 
 
-
-
-Prev
-Next
-
-
-Frames
-NoFrames
-
-
-AllClasses
-
-
-
-
+
+
+SEARCH
+
+
+
 
-
-
-
 
-ABCDEFGIMNOPRSVW
-
-
-A
-
-addArg(String)
 - Method in class org.apache.maven.shared.invoker.DefaultInvocationRequest
+
+
+
+
+
+Index
+
+ABCDEFGIMNOPRSUVWAllClassesandInterfaces|AllPackages|ConstantFieldValues|SerializedForm
+A
+
+addArg(String) - Method in class 
org.apache.maven.shared.invoker.DefaultInvocationRequest
 
-addArg(String)
 - Method in interface org.apache.maven.shared.invoker.InvocationRequest
+addArg(String) - Method in interface 
org.apache.maven.shared.invoker.InvocationRequest
 
-Add a raw  argument to Maven  cli command at the end of 
other arguments.
+Add a raw argument to Maven cli command at the end of other 
arguments.
 
-addShellEnvironment(String,
 String) - Method in class org.apache.maven.shared.invoker.DefaultInvocationRequest
+addArgs(CollectionString) - Method in 
class org.apache.maven.shared.invoker.DefaultInvocationRequest
+
+addArgs(CollectionString) - Method in 
interface org.apache.maven.shared.invoker.InvocationRequest
+
+Add a raw arguments list to Maven cli command at the end of 
other arguments.
+
+addShellEnvironment(String, String) - Method in 
class org.apache.maven.shared.invoker.DefaultInvocationRequest
 
 Adds the specified environment variable to the Maven 
invocation.
 
-addShellEnvironment(String,
 String) - Method in interface org.apache.maven.shared.invoker.InvocationRequest
+addShellEnvironment(String, String) - Method in 
interface org.apache.maven.shared.invoker.InvocationRequest
 
 Adds the specified environment variable to the Maven 
invocation.
 
+ALWAYS - Enum constant in enum 
org.apache.maven.shared.invoker.UpdateSnapshotsPolicy
+
+Request Maven to always update snapshots.
+
 
-
-
-
-B
-
-build(InvocationRequest)
 - Method in class org.apache.maven.shared.invoker.MavenCommandLineBuilder
+B
+
+build(InvocationRequest) - Method in class 
org.apache.maven.shared.invoker.MavenCommandLineBuilder
 
 build.
 
 
-
-
-
-C
-
-checkRequiredState()
 - Method in class org.apache.maven.shared.invoker.MavenCommandLineBuilder
+C
+
+checkRequiredState() - Method in class 
org.apache.maven.shared.invoker.MavenCommandLineBuilder
 
 checkRequiredState.
 
-CommandLineConfigurationException - Exception 
in org.apache.maven.shared.invoker
+CommandLineConfigurationException - 
Exception Class in org.apache.maven.shared.invoker
 
 Signals an error during the construction of the command 
line used to invoke Maven.
 
-CommandLineConfigurationException(String,
 Throwable) - Constructor for exception 
org.apache.maven.shared.invoker.CommandLineConfigurationException
+CommandLineConfigurationException(String) - 
Constructor for exception class org.apache.maven.shared.invoker.CommandLineConfigurationException
 
-Creates a new exception using the specified detail message 
and cause.
+Creates a new exception using the specified detail 
message.
 
-CommandLineConfigurationException(String)
 - Constructor for exception org.apache.maven.shared.invoker.CommandLineConfigurationException
+CommandLineConfigurationException(String, 
Throwable) - Constructor for exception class 
org.apache.maven.shared.invoker.CommandLineConfigurationException
 
-Creates a new exception using the specified detail 
message.
+Creates a new exception using the specified detail message 
and cause.
 
-consumeLine(String)
 - Method in class org.apache.maven.shared.invoker.PrintStreamHandler
+consumeLine(String) - Method in class 
org.apache.maven.shared.invoker.PrintStreamHandler
 
-
-
-
-D
-
-DEBUG
 - Static variable in interface org.apache.maven.shared.invoker.InvokerLogger
+D
+
+debug(String) - Method in interface 
org.apache.maven.shared.invoker.InvokerLogger
 
-The threshold for debug output.
+Logs 

svn commit: r1917554 [23/26] - in /maven/doxia/website/components/doxia-archives/doxia-LATEST: ./ apidocs/ apidocs/org/apache/maven/doxia/ apidocs/org/apache/maven/doxia/class-use/ apidocs/org/apache/

2024-05-07 Thread michaelo
Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-xhtml5/surefire-report.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-xhtml5/surefire-report.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-xhtml5/surefire-report.html
 Tue May  7 17:59:12 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -51,8 +51,8 @@
   Modules/
   Xhtml5/
 Surefire Report
-| 
Last Published: 2024-04-11
-  Version: 2.0.0-M10
+| 
Last Published: 2024-05-07
+  Version: 2.0.0-M11
   
 
   
@@ -75,7 +75,6 @@
  
   Surefire
   Checkstyle
-  CPD
   PMD
   Source Xref
   Test Source Xref
@@ -156,7 +155,7 @@ function toggleDisplay(elementId) {
 0
 2
 98.2%
-2.531 s
+3.305 s
 Note: failures are anticipated and checked for with assertions while errors 
are unanticipated.
 Package List
 [Summary] [Package List] 
[Test Cases]
@@ -176,7 +175,7 @@ function toggleDisplay(elementId) {
 0
 2
 98.2%
-2.531 s
+3.305 s
 Note: package statistics are not computed recursively, they only sum up all 
of its testsuites numbers.
 org.apache.maven.doxia.module.xhtml5
 
@@ -197,7 +196,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-0.563 s
+0.701 s
 
 
 Xhtml5ParserTest
@@ -206,7 +205,7 @@ function toggleDisplay(elementId) {
 0
 2
 80.0%
-0.326 s
+0.385 s
 
 
 Xhtml5SinkTest
@@ -215,7 +214,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-0.889 s
+1.002 s
 
 
 Xhtml5SinkWithLanguageIdTest
@@ -224,7 +223,7 @@ function toggleDisplay(elementId) {
 0
 0
 100%
-0.753 s
+1.217 s
 Test Cases
 [Summary] [Package List] 
[Test Cases]
 Xhtml5IdentityTest
@@ -232,7 +231,7 @@ function toggleDisplay(elementId) {
 
 
 testIdentity
-0.543 s
+0.663 s
 Xhtml5ParserTest
 
 
@@ -247,7 +246,7 @@ function toggleDisplay(elementId) {
 
 
 testSinkWrapper
-0.069 s
+0.072 s
 
 
 testVerbatimCode
@@ -260,11 +259,11 @@ function toggleDisplay(elementId) {
 
 
 testDocument
-0.047 s
+0.031 s
 
 
 testParser
-0.015 s
+0.047 s
 
 
 testPreEventsList
@@ -272,15 +271,15 @@ function toggleDisplay(elementId) {
 
 
 testUnknown
-0.032 s
+0.047 s
 
 
 testTocMacro
-0.016 s
+0.031 s
 
 
 testHeadEventsList
-0.031 s
+0.022 s
 
 
 testDocumentBodyEventsList
@@ -290,23 +289,23 @@ function toggleDisplay(elementId) {
 
 
 testNumberedList
-0.031 s
+0.015 s
 
 
 testTestDocument
-0.016 s
+0.032 s
 
 
 testParagraph
-0.015 s
+0.022 s
 
 
 testAddress
-0.023 s
+0.015 s
 
 
 testTitle
-0.015 s
+0.016 s
 
 
 testLineBreak
@@ -314,15 +313,15 @@ function toggleDisplay(elementId) {
 
 
 testBody
-0.031 s
+0.015 s
 
 
 testData
-0.016 s
+0.038 s
 
 
 testDate
-0.022 s
+0.016 s
 
 
 testLink
@@ -334,15 +333,15 @@ function toggleDisplay(elementId) {
 
 
 testText
-0.016 s
+0.015 s
 
 
 testTime
-0.015 s
+0.016 s
 
 
 testArticle
-0.016 s
+0.006 s
 
 
 testVerbatimSource
@@ -350,7 +349,7 @@ function toggleDisplay(elementId) {
 
 
 testNonBreakingSpace
-0.006 s
+0.015 s
 
 
 testLineBreakOpportunity
@@ -358,15 +357,15 @@ function toggleDisplay(elementId) {
 
 
 testFigureWithoutCaption
-0.100 s
+0.116 s
 
 
 testInlineBold
-0.016 s
+0.031 s
 
 
 testInlineCode
-0.015 s
+0.007 s
 
 
 testComment
@@ -374,19 +373,19 @@ function toggleDisplay(elementId) {
 
 
 testContent
-0.015 s
+0.016 s
 
 
 testBlockquote
-0.016 s
+0.015 s
 
 
 testRawText
-0.007 s
+0.016 s
 
 
 testInlineItalic
-0.015 s
+0.022 s
 
 
 testNavigation
@@ -398,7 +397,7 @@ function toggleDisplay(elementId) {
 
 
 testAuthor
-0.016 s
+0.031 s
 
 
 testDivider
@@ -410,11 +409,11 @@ function toggleDisplay(elementId) {
 
 
 testFooter
-0.015 s
+0.016 s
 
 
 testHeader
-0.016 s
+0.015 s
 
 
 testInline
@@ -430,11 +429,11 @@ function toggleDisplay(elementId) {
 
 
 testSection1
-0.015 s
+0.006 s
 
 
 testSection2
-0.007 s
+0.016 s
 
 
 testSection3
@@ -454,45 +453,45 @@ function toggleDisplay(elementId) {
 
 
 testSectionTitle
-0.016 s
+0.007 s
 
 
 testSidebar
-0.016 s
+0.015 s
 
 
 testFigureFromUrl
-0.018 s
+0.031 s
 
 
 testTableWithHeader
-0.020 s
+0.016 s
 
 
 testDefinitionList
-0.018 s
+0.016 s
 
 
 testEntities
-0.013 s
+0.015 s
 
 
 testLinks
-0.010 s
+0.007 s
 
 
 testTable
-0.020 s
+0.015 s
 
 
 testHead
-0.010 s
+0.016 s
 Xhtml5SinkWithLanguageIdTest
 
 
 
 testNumberedList
-0.010 s
+0.016 s
 
 
 testTestDocument
@@ -504,31 +503,31 @@ function toggleDisplay(elementId) {
 
 
 testAddress
-0.016 s
+0.022 s
 
 
 testTitle
-0.015 s
+0.016 s
 
 
 testLineBreak
-0.016 s
+0.015 s
 
 
 testBody
-0 s
+0.032 s
 
 
 testData
-0.022 s
+0.031 s
 
 
 testDate
-0.016 s
+0.006 s
 
 
 testLink
-0 s
+0.032 s
 
 
 testList
@@ -536,11 +535,11 @@ function toggleDisplay(elementId) {
 
 
 testText
-0.016 s
+0.031 s
 
 
 testTime
-0.016 s
+0.023 s
 
 
 testArticle
@@ -552,7 +551,7 @@ function toggleDisplay(elementId) {
 
 

svn commit: r1917554 [25/26] - in /maven/doxia/website/components/doxia-archives/doxia-LATEST: ./ apidocs/ apidocs/org/apache/maven/doxia/ apidocs/org/apache/maven/doxia/class-use/ apidocs/org/apache/

2024-05-07 Thread michaelo
Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-info.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-info.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-info.html
 Tue May  7 17:59:12 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -50,8 +50,8 @@
   Doxia base/
   Doxia :: Test 
Documents/
 Dependency Information
-| 
Last Published: 2024-04-11
-  Version: 2.0.0-M10
+| 
Last Published: 2024-05-07
+  Version: 2.0.0-M11
   
 
   
@@ -124,27 +124,27 @@
 dependency
   groupIdorg.apache.maven.doxia/groupId
   artifactIddoxia-test-docs/artifactId
-  version2.0.0-M10/version
+  version2.0.0-M11/version
 /dependency
 Apache Ivy
 
-dependency org=org.apache.maven.doxia 
name=doxia-test-docs rev=2.0.0-M10
+dependency org=org.apache.maven.doxia 
name=doxia-test-docs rev=2.0.0-M11
   artifact name=doxia-test-docs type=jar /
 /dependency
 Groovy Grape
 
 @Grapes(
-@Grab(group='org.apache.maven.doxia', module='doxia-test-docs', 
version='2.0.0-M10')
+@Grab(group='org.apache.maven.doxia', module='doxia-test-docs', 
version='2.0.0-M11')
 )
 Gradle/Grails
 
-implementation 
'org.apache.maven.doxia:doxia-test-docs:2.0.0-M10'
+implementation 
'org.apache.maven.doxia:doxia-test-docs:2.0.0-M11'
 Scala SBT
 
-libraryDependencies += org.apache.maven.doxia % 
doxia-test-docs % 
2.0.0-M10
+libraryDependencies += org.apache.maven.doxia % 
doxia-test-docs % 
2.0.0-M11
 Leiningen
 
-[org.apache.maven.doxia/doxia-test-docs 
2.0.0-M10]
+[org.apache.maven.doxia/doxia-test-docs 
2.0.0-M11]
 
   
 

Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-management.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-management.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/dependency-management.html
 Tue May  7 17:59:12 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -50,8 +50,8 @@
   Doxia base/
   Doxia :: Test 
Documents/
 Project Dependency Management
-| 
Last Published: 2024-04-11
-  Version: 2.0.0-M10
+| 
Last Published: 2024-05-07
+  Version: 2.0.0-M11
   
 
   
@@ -149,61 +149,61 @@
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-core/;>doxia-core
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-core/;>doxia-core
-2.0.0-M10
+2.0.0-M11
 test-jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-apt/;>doxia-module-apt
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-fml/;>doxia-module-fml
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-markdown/;>doxia-module-markdown
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-xdoc/;>doxia-module-xdoc
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-xhtml5/;>doxia-module-xhtml5
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-sink-api/;>doxia-sink-api
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-test-docs/;>doxia-test-docs
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.plugin-tools
 https://maven.apache.org/plugin-tools/maven-plugin-annotations;>maven-plugin-annotations
-3.10.2
+3.12.0
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 

Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/distribution-management.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-test-docs/distribution-management.html
 (original)
+++ 

svn commit: r1917554 [17/26] - in /maven/doxia/website/components/doxia-archives/doxia-LATEST: ./ apidocs/ apidocs/org/apache/maven/doxia/ apidocs/org/apache/maven/doxia/class-use/ apidocs/org/apache/

2024-05-07 Thread michaelo
Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-info.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-info.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-info.html
 Tue May  7 17:59:12 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -51,8 +51,8 @@
   Modules/
   FML/
 Dependency Information
-| 
Last Published: 2024-04-11
-  Version: 2.0.0-M10
+| 
Last Published: 2024-05-07
+  Version: 2.0.0-M11
   
 
   
@@ -138,27 +138,27 @@
 dependency
   groupIdorg.apache.maven.doxia/groupId
   artifactIddoxia-module-fml/artifactId
-  version2.0.0-M10/version
+  version2.0.0-M11/version
 /dependency
 Apache Ivy
 
-dependency org=org.apache.maven.doxia 
name=doxia-module-fml rev=2.0.0-M10
+dependency org=org.apache.maven.doxia 
name=doxia-module-fml rev=2.0.0-M11
   artifact name=doxia-module-fml type=jar /
 /dependency
 Groovy Grape
 
 @Grapes(
-@Grab(group='org.apache.maven.doxia', module='doxia-module-fml', 
version='2.0.0-M10')
+@Grab(group='org.apache.maven.doxia', module='doxia-module-fml', 
version='2.0.0-M11')
 )
 Gradle/Grails
 
-implementation 
'org.apache.maven.doxia:doxia-module-fml:2.0.0-M10'
+implementation 
'org.apache.maven.doxia:doxia-module-fml:2.0.0-M11'
 Scala SBT
 
-libraryDependencies += org.apache.maven.doxia % 
doxia-module-fml % 
2.0.0-M10
+libraryDependencies += org.apache.maven.doxia % 
doxia-module-fml % 
2.0.0-M11
 Leiningen
 
-[org.apache.maven.doxia/doxia-module-fml 
2.0.0-M10]
+[org.apache.maven.doxia/doxia-module-fml 
2.0.0-M11]
 
   
 

Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-management.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-management.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/dependency-management.html
 Tue May  7 17:59:12 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -51,8 +51,8 @@
   Modules/
   FML/
 Project Dependency Management
-| 
Last Published: 2024-04-11
-  Version: 2.0.0-M10
+| 
Last Published: 2024-05-07
+  Version: 2.0.0-M11
   
 
   
@@ -163,61 +163,61 @@
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-core/;>doxia-core
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-core/;>doxia-core
-2.0.0-M10
+2.0.0-M11
 test-jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-apt/;>doxia-module-apt
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-fml/;>doxia-module-fml
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-markdown/;>doxia-module-markdown
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-xdoc/;>doxia-module-xdoc
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-xhtml5/;>doxia-module-xhtml5
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-sink-api/;>doxia-sink-api
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.doxia
 https://maven.apache.org/doxia/doxia/doxia-test-docs/;>doxia-test-docs
-2.0.0-M10
+2.0.0-M11
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 
 org.apache.maven.plugin-tools
 https://maven.apache.org/plugin-tools/maven-plugin-annotations;>maven-plugin-annotations
-3.10.2
+3.12.0
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
 

Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/distribution-management.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/doxia-module-fml/distribution-management.html
 (original)

svn commit: r1917554 [13/26] - in /maven/doxia/website/components/doxia-archives/doxia-LATEST: ./ apidocs/ apidocs/org/apache/maven/doxia/ apidocs/org/apache/maven/doxia/class-use/ apidocs/org/apache/

2024-05-07 Thread michaelo
Modified: 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/apidocs/org/apache/maven/doxia/module/fml/model/class-use/Part.html
==
--- 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/apidocs/org/apache/maven/doxia/module/fml/model/class-use/Part.html
 (original)
+++ 
maven/doxia/website/components/doxia-archives/doxia-LATEST/doxia-modules/apidocs/org/apache/maven/doxia/module/fml/model/class-use/Part.html
 Tue May  7 17:59:12 2024
@@ -4,7 +4,7 @@
 
 
 
-Uses of Class org.apache.maven.doxia.module.fml.model.Part (Doxia :: 
Modules 2.0.0-M10 API)
+Uses of Class org.apache.maven.doxia.module.fml.model.Part (Doxia :: 
Modules 2.0.0-M11 API)
 
 
 
@@ -12,7 +12,7 @@
 
 
-org.apache.maven.doxia.module.fml.model (Doxia :: Modules 2.0.0-M10 
API)
+org.apache.maven.doxia.module.fml.model (Doxia :: Modules 2.0.0-M11 
API)