(maven-shade-plugin) branch master updated: Drop the cruft (#225)

2024-05-27 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shade-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 199ffae  Drop the cruft (#225)
199ffae is described below

commit 199ffaecd26a912527173ed4edae366e48a00998
Author: Tamas Cservenak 
AuthorDate: Mon May 27 23:21:12 2024 +0200

Drop the cruft (#225)

* Drop commons-collections

Single class mildly used it. Simple replacement added.

* Drop other deprecated dependency

* Null safe

* Maven Artifact should be deprecated, is a mixed bad of mixed concepts

* Remove inherited fluff
---
 .github/workflows/maven-verify.yml |  1 -
 pom.xml| 55 +-
 .../apache/maven/plugins/shade/DefaultShader.java  | 30 ++--
 .../apache/maven/plugins/shade/mojo/ShadeMojo.java | 55 --
 .../properties/io/NoCloseOutputStream.java |  2 +-
 5 files changed, 57 insertions(+), 86 deletions(-)

diff --git a/.github/workflows/maven-verify.yml 
b/.github/workflows/maven-verify.yml
index c021920..1204718 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -26,4 +26,3 @@ jobs:
 uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
 with:
   ff-jdk: "21"
-  ff-jdk-distribution: "corretto"
diff --git a/pom.xml b/pom.xml
index 4581fde..2cfbf0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,7 +54,7 @@
   
 
   
-${mavenVersion}
+3.6.3
   
 
   
@@ -79,35 +79,14 @@
   
 
   
-3.6.3
+3.9.7
 8
-0.3.5
 ${project.version}
 9.7
-1.7.32
+1.7.36
 
2024-04-20T15:33:41Z
   
 
-  
-
-  
-org.eclipse.sisu
-org.eclipse.sisu.inject
-${sisu.version}
-  
-  
-org.eclipse.sisu
-org.eclipse.sisu.plexus
-${sisu.version}
-  
-  
-com.google.inject
-guice
-5.1.0
-  
-
-  
-
   
 
 
@@ -144,10 +123,7 @@
 
   org.codehaus.plexus
   plexus-utils
-
-
-  org.codehaus.plexus
-  plexus-xml
+  3.5.1
 
 
 
@@ -181,25 +157,20 @@
   2.0.6.1
 
 
-  org.apache.maven.shared
-  maven-dependency-tree
-  3.2.1
+  org.apache.commons
+  commons-compress
+  1.26.2
 
 
   commons-io
   commons-io
-  2.13.0
+  2.16.1
 
 
   org.vafer
   jdependency
   2.10
 
-
-  org.apache.commons
-  commons-collections4
-  4.4
-
 
 
 
@@ -211,6 +182,7 @@
 
   com.google.inject
   guice
+  5.1.0
   test
 
 
@@ -228,13 +200,13 @@
 
   org.xmlunit
   xmlunit-legacy
-  2.9.1
+  2.10.0
   test
 
 
   org.mockito
   mockito-core
-  2.28.2
+  3.12.4
   test
 
 
@@ -255,11 +227,6 @@
   3.3.0
   test
 
-
-  org.apache.commons
-  commons-compress
-  1.26.1
-
   
 
   
diff --git a/src/main/java/org/apache/maven/plugins/shade/DefaultShader.java 
b/src/main/java/org/apache/maven/plugins/shade/DefaultShader.java
index c11978e..d8a9c65 100644
--- a/src/main/java/org/apache/maven/plugins/shade/DefaultShader.java
+++ b/src/main/java/org/apache/maven/plugins/shade/DefaultShader.java
@@ -24,7 +24,6 @@ import javax.inject.Singleton;
 import java.io.BufferedOutputStream;
 import java.io.ByteArrayInputStream;
 import java.io.File;
-import java.io.FileInputStream;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
@@ -32,16 +31,19 @@ import java.io.OutputStreamWriter;
 import java.io.PushbackInputStream;
 import java.io.Writer;
 import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.Calendar;
 import java.util.Collection;
 import java.util.Collections;
 import java.util.Enumeration;
+import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Iterator;
 import java.util.LinkedList;
 import java.util.List;
+import java.util.Map;
 import java.util.Objects;
 import java.util.Set;
 import java.util.concurrent.Callable;
@@ -54,8 +56,6 @@ import java.util.zip.CRC32;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipException;
 
-import org.apache.commons.collections4.MultiValuedMap;
-import org.apache.commons.collections4.multimap.HashSetValuedHashMap;
 import org.apache.commons.compress.archivers.zip.ExtraFieldUtils;
 import org.apache.commons.compress.archivers.zip.X5455_ExtendedTimestamp;
 import org.apache.commons.compress.archivers.zip.ZipExtraField;
@@ -137,26 +137,26 @@ public class DefaultShader implements Shader {
 goThroughAllJarEntriesForManifestTransformer(shad

(maven-verifier) branch MSHARED-1403-log-file deleted (was 823aa13)

2024-05-25 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MSHARED-1403-log-file
in repository https://gitbox.apache.org/repos/asf/maven-verifier.git


 was 823aa13  fix javadoc

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(maven-verifier) branch master updated: [MSHARED-1403] Configure log file as as File (not only file name relative to base directory) (#89)

2024-05-25 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-verifier.git


The following commit(s) were added to refs/heads/master by this push:
 new 260453a  [MSHARED-1403] Configure log file as as File (not only file 
name relative to base directory) (#89)
260453a is described below

commit 260453aa439d5f83f53a9dbaf430a713887fb249
Author: Olivier Lamy 
AuthorDate: Sat May 25 11:11:05 2024 +0200

[MSHARED-1403] Configure log file as as File (not only file name relative 
to base directory) (#89)

* [MSHARED-1403] Configure log file as as File (not only file name relative 
to base directory)

-

Signed-off-by: Olivier Lamy 
---
 pom.xml|  1 +
 .../org/apache/maven/shared/verifier/Verifier.java | 33 ++
 .../apache/maven/shared/verifier/VerifierTest.java | 24 
 3 files changed, 52 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index dbf7117..54392fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,6 +145,7 @@
   
 
   ${maven.home}
+  
${session.repositorySession.localRepository.basedir.absolutePath}
 
   
 
diff --git a/src/main/java/org/apache/maven/shared/verifier/Verifier.java 
b/src/main/java/org/apache/maven/shared/verifier/Verifier.java
index 29abaf8..362b11d 100644
--- a/src/main/java/org/apache/maven/shared/verifier/Verifier.java
+++ b/src/main/java/org/apache/maven/shared/verifier/Verifier.java
@@ -60,6 +60,7 @@ import java.util.Collections;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
+import java.util.Objects;
 import java.util.Properties;
 import java.util.StringTokenizer;
 import java.util.regex.Pattern;
@@ -113,6 +114,8 @@ public class Verifier {
 
 private String logFileName = LOG_FILENAME;
 
+private File logFile;
+
 private String mavenHome;
 
 // will launch mvn with -X
@@ -209,7 +212,7 @@ public class Verifier {
  * use 
  * {@link #Verifier(String)}
  * {@link #setSettingsFile(String)} to set settings file
- * {@link #setForkJvm(Boolean)} to set forkJvm status
+ * {@link #setForkJvm(boolean)} to set forkJvm status
  * 
  */
 @Deprecated
@@ -224,7 +227,7 @@ public class Verifier {
  * use 
  * {@link #Verifier(String basedir)}
  * {@link #setSettingsFile(String settingsFile)} to set settings 
file
- * {@link #setForkJvm(Boolean)} to set forkJvm status and
+ * {@link #setForkJvm(boolean)} to set forkJvm status and
  * {@link #setDefaultCliArguments(String[] defaultCliArguments)} to 
set settings file
  * 
  */
@@ -303,7 +306,7 @@ public class Verifier {
 }
 
 public void verifyErrorFreeLog() throws VerificationException {
-List lines = loadFile(getBasedir(), getLogFileName(), false);
+List lines = loadFile(getLogFile(), false);
 
 for (String line : lines) {
 // A hack to keep stupid velocity resource loader errors from 
triggering failure
@@ -331,7 +334,7 @@ public class Verifier {
  * @throws VerificationException if text is not found in log
  */
 public void verifyTextInLog(String text) throws VerificationException {
-List lines = loadFile(getBasedir(), getLogFileName(), false);
+List lines = loadFile(getLogFile(), false);
 
 boolean result = false;
 for (String line : lines) {
@@ -1122,7 +1125,7 @@ public class Verifier {
 }
 
 int ret;
-File logFile = new File(getBasedir(), getLogFileName());
+File logFile = getLogFile();
 
 try {
 MavenLauncher launcher = getMavenLauncher(environmentVariables);
@@ -1466,6 +1469,24 @@ public class Verifier {
 this.logFileName = logFileName;
 }
 
+/**
+ *
+ * @param logFile configure the log file used to log build output
+ * @since 2.0 ish (not really sure if this will be this)
+ */
+public void setLogFile(File logFile) {
+this.logFile = Objects.requireNonNull(logFile, "log file cannot be 
null");
+}
+
+/**
+ *
+ * @return The log file used to log build output
+ * @since 2.0 ish (not really sure if this will be this)
+ */
+public File getLogFile() {
+return logFile == null ? new File(getBasedir(), logFileName) : logFile;
+}
+
 /**
  * @deprecated will be removed without replacement
  */
@@ -1493,7 +1514,7 @@ public class Verifier {
 this.mavenDebug = mavenDebug;
 }
 
-public void setForkJvm(Boolean forkJvm) {
+public void setForkJvm(boolean forkJvm) {
 this.forkJvm = forkJvm;
 }
 
diff --git a/src/test/java/org/apache/maven/shared/verifier/VerifierTest.java 
b/src/test/java/org/apache/maven/shared/verifier/VerifierTest.java
index 0d6107d..1ce198d 100644
--- a/src/test/java/

(maven-verifier) branch MSHARED-1403-log-file updated (e025c52 -> 823aa13)

2024-05-24 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MSHARED-1403-log-file
in repository https://gitbox.apache.org/repos/asf/maven-verifier.git


from e025c52  [MSHARED-1403] Configure log file as as File (not only file 
name relative to base directory)
 add 823aa13  fix javadoc

No new revisions were added by this update.

Summary of changes:
 src/main/java/org/apache/maven/shared/verifier/Verifier.java | 4 ++--
 src/test/java/org/apache/maven/shared/verifier/VerifierTest.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)



(maven-verifier) branch MSHARED-1403-log-file created (now e025c52)

2024-05-24 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MSHARED-1403-log-file
in repository https://gitbox.apache.org/repos/asf/maven-verifier.git


  at e025c52  [MSHARED-1403] Configure log file as as File (not only file 
name relative to base directory)

No new revisions were added by this update.



svn commit: r69113 - /release/maven/buildcache/

2024-05-12 Thread olamy
Author: olamy
Date: Mon May 13 00:55:44 2024
New Revision: 69113

Log:
build cache extension 1.2.0

Added:

release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip   
(with props)

release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.asc

release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.sha512
Removed:

release/maven/buildcache/maven-build-cache-extension-1.1.0-source-release.zip

release/maven/buildcache/maven-build-cache-extension-1.1.0-source-release.zip.asc

release/maven/buildcache/maven-build-cache-extension-1.1.0-source-release.zip.sha512

Added: 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip
==
Binary file - no diff available.

Propchange: 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip
--
svn:mime-type = application/octet-stream

Added: 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.asc
==
--- 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.asc
 (added)
+++ 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.asc
 Mon May 13 00:55:44 2024
@@ -0,0 +1,6 @@
+-BEGIN PGP SIGNATURE-
+
+iF0EABEKAB0WIQTyVLNWF9wlXZNEvPqHOo6GtDchRgUCZjwYdgAKCRCHOo6GtDch
+Rkl5AJ931ZF3QUSI5mlMhQnCawOM18JVOwCeJMlgVzsYkAO46R+axTtZ3aRwCjI=
+=C8gv
+-END PGP SIGNATURE-

Added: 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.sha512
==
--- 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.sha512
 (added)
+++ 
release/maven/buildcache/maven-build-cache-extension-1.2.0-source-release.zip.sha512
 Mon May 13 00:55:44 2024
@@ -0,0 +1 @@
+bc1a4b84c4f21a73964d8f65c3d37e372dfa8fc6d64e13db3f2d7ff2111485b41eb6bd24872626597070fd28cdcb55e0702cf9a2f106bedc7ec1483fbcd2aeb2
\ No newline at end of file




(maven-assembly-plugin) branch MASSEMBLY-1030 deleted (was 6bbbe8cc)

2024-05-12 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MASSEMBLY-1030
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


 was 6bbbe8cc force war plugin version to get it working with more recent 
Java version

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(maven-assembly-plugin) branch master updated: [MASSEMBLY-1030] Manifest entries from archive configuration are not added in final MANIFEST (#205)

2024-05-12 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 6f86188d [MASSEMBLY-1030] Manifest entries from archive configuration 
are not added in final MANIFEST (#205)
6f86188d is described below

commit 6f86188d097f58453c7fcf662c02c691020877d1
Author: Olivier Lamy 
AuthorDate: Sun May 12 13:17:31 2024 +0200

[MASSEMBLY-1030] Manifest entries from archive configuration are not added 
in final MANIFEST (#205)

* [MASSEMBLY-1030] Manifest entries from archive configuration are not 
added in final MANIFEST

Signed-off-by: Olivier Lamy 

* force war plugin version to get it working with more recent Java version

Signed-off-by: Olivier Lamy 

-

Signed-off-by: Olivier Lamy 
---
 src/it/it-project-parent/pom.xml   |  5 ++
 .../pom.xml| 86 ++
 .../src/main/assembly/web-bundle.xml   | 40 ++
 .../src/main/java/test/App.java| 33 +
 .../src/main/webapp/WEB-INF/web.xml| 27 +++
 .../src/main/webapp/index.jsp  | 20 +
 .../verify.bsh | 39 ++
 .../archive/ManifestCreationFinalizer.java | 10 +++
 8 files changed, 260 insertions(+)

diff --git a/src/it/it-project-parent/pom.xml b/src/it/it-project-parent/pom.xml
index 511da0d6..37af8699 100644
--- a/src/it/it-project-parent/pom.xml
+++ b/src/it/it-project-parent/pom.xml
@@ -79,6 +79,11 @@ under the License.
   maven-surefire-plugin
   @version.maven-surefire@
 
+
+  org.apache.maven.plugins
+  maven-war-plugin
+  3.4.0
+
   
 
   
diff --git 
a/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/pom.xml
 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/pom.xml
new file mode 100644
index ..d446ff21
--- /dev/null
+++ 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/pom.xml
@@ -0,0 +1,86 @@
+
+
+
+
+  4.0.0
+  
+org.apache.maven.plugin.assembly.test
+it-project-parent
+1
+  
+  
+  test
+  manifest-with-customEntry-manifest-file
+  war
+  1
+  
+
+  
+org.apache.felix
+maven-bundle-plugin
+5.1.9
+true
+
+  
+war
+  
+  
+
jakarta.servlet.jsp.*;version="[3,4)",org.eclipse.jetty.*;version="[$(version;===;1.0),$(version;==+;1.0))",*
+!org.example.*
+/ee10-demo-jsp
+.,WEB-INF/classes
+  
+
+
+  
+
+  manifest
+
+process-classes
+  
+
+  
+  
+maven-assembly-plugin
+
+  
+assembly
+package
+
+  single
+
+
+  
+src/main/assembly/web-bundle.xml
+  
+  
+
${project.build.outputDirectory}/META-INF/MANIFEST.MF
+
+  beer
+
+  
+
+  
+
+  
+
+  
+
+
diff --git 
a/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/assembly/web-bundle.xml
 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/assembly/web-bundle.xml
new file mode 100644
index ..41660b10
--- /dev/null
+++ 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/assembly/web-bundle.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+webbundle
+
+jar
+
+false
+
+
+
${basedir}/${project.build.directory}/${project.build.finalName}/
+
+
+**/*.*
+
+
+WEB-INF/lib/**
+
+
+
+
diff --git 
a/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/java/test/App.java
 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/java/test/App.java
new file mode 100644
index ..d0442f33
--- /dev/null
+++ 
b/src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/main/java/test/App.java
@@ -0,0 +1,33 @@
+package test;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use 

(maven-assembly-plugin) branch MASSEMBLY-1030 updated (15e92f51 -> 6bbbe8cc)

2024-05-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MASSEMBLY-1030
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


from 15e92f51 [MASSEMBLY-1030] Manifest entries from archive configuration 
are not added in final MANIFEST
 add 6bbbe8cc force war plugin version to get it working with more recent 
Java version

No new revisions were added by this update.

Summary of changes:
 src/it/it-project-parent/pom.xml   |  5 ++
 .../pom.xml|  8 ---
 .../src/test/java/test/AppTest.java| 58 --
 3 files changed, 5 insertions(+), 66 deletions(-)
 delete mode 100644 
src/it/projects/mojo-configuration/manifest-with-customEntry-manifest-file/src/test/java/test/AppTest.java



(maven-assembly-plugin) branch MASSEMBLY-1030 created (now 15e92f51)

2024-05-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch MASSEMBLY-1030
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


  at 15e92f51 [MASSEMBLY-1030] Manifest entries from archive configuration 
are not added in final MANIFEST

No new revisions were added by this update.



svn commit: r1917666 - /maven/website/components/extensions-archives/maven-build-cache-extension-1.1.0/

2024-05-11 Thread olamy
Author: olamy
Date: Sat May 11 08:41:16 2024
New Revision: 1917666

Log:
restore 1.1.0

Added:

maven/website/components/extensions-archives/maven-build-cache-extension-1.1.0/
  - copied from r1914145, 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/



svn commit: r1917665 - /maven/website/components/extensions-archives/maven-build-cache-extension-1.2.0/

2024-05-11 Thread olamy
Author: olamy
Date: Sat May 11 08:39:12 2024
New Revision: 1917665

Log:
backup as 1.2.0

Added:

maven/website/components/extensions-archives/maven-build-cache-extension-1.2.0/
  - copied from r1917664, 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/



svn commit: r1917588 [34/42] - in /maven/website/components/extensions-archives/maven-build-cache-extension-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/legal/ apidocs/org/apache/maven/buildcache/ apid

2024-05-08 Thread olamy
Modified: 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/CacheConfigImpl.html
==
--- 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/CacheConfigImpl.html
 (original)
+++ 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/CacheConfigImpl.html
 Thu May  9 00:34:30 2024
@@ -50,575 +50,609 @@
 42  import 
org.apache.maven.buildcache.xml.config.CacheConfig;
 43  import 
org.apache.maven.buildcache.xml.config.Configuration;
 44  import 
org.apache.maven.buildcache.xml.config.CoordinatesBase;
-45  import 
org.apache.maven.buildcache.xml.config.Exclude;
-46  import 
org.apache.maven.buildcache.xml.config.Executables;
-47  import 
org.apache.maven.buildcache.xml.config.ExecutionConfigurationScan;
-48  import 
org.apache.maven.buildcache.xml.config.ExecutionControl;
-49  import 
org.apache.maven.buildcache.xml.config.ExecutionIdsList;
-50  import 
org.apache.maven.buildcache.xml.config.GoalReconciliation;
-51  import 
org.apache.maven.buildcache.xml.config.GoalsList;
-52  import 
org.apache.maven.buildcache.xml.config.Include;
-53  import 
org.apache.maven.buildcache.xml.config.Input;
-54  import 
org.apache.maven.buildcache.xml.config.Local;
-55  import 
org.apache.maven.buildcache.xml.config.MultiModule;
-56  import 
org.apache.maven.buildcache.xml.config.PathSet;
-57  import 
org.apache.maven.buildcache.xml.config.PluginConfigurationScan;
-58  import 
org.apache.maven.buildcache.xml.config.PluginSet;
-59  import 
org.apache.maven.buildcache.xml.config.ProjectVersioning;
-60  import 
org.apache.maven.buildcache.xml.config.PropertyName;
-61  import 
org.apache.maven.buildcache.xml.config.Remote;
-62  import 
org.apache.maven.buildcache.xml.config.TrackedProperty;
-63  import org.apache.maven.execution.MavenSession;
-64  import org.apache.maven.model.Plugin;
-65  import org.apache.maven.model.PluginExecution;
-66  import org.apache.maven.plugin.MojoExecution;
-67  import org.apache.maven.rtinfo.RuntimeInformation;
-68  import org.slf4j.Logger;
-69  import org.slf4j.LoggerFactory;
-70  
-71  import static 
java.lang.Boolean.TRUE;
-72  import static 
org.apache.maven.buildcache.CacheUtils.getMultimoduleRoot;
-73  
-74  /**
-75   * CacheConfigImpl
-76   */
-77  @SessionScoped
-78  @Named
-79  
@SuppressWarnings("unused")
-80  public class 
CacheConfigImpl
 implements 
org.apache.maven.buildcache.xml.CacheConfig {
-81  
-82  public static 
final String CONFIG_PATH_PROPERTY_NAME = 
"maven.build.cache.configPath";
-83  public static 
final String CACHE_ENABLED_PROPERTY_NAME = 
"maven.build.cache.enabled";
-84  public static 
final String CACHE_LOCATION_PROPERTY_NAME 
= "maven.build.cache.location";
-85  public static 
final String REMOTE_ENABLED_PROPERTY_NAME 
= "maven.build.cache.remote.enabled";
-86  public static 
final String REMOTE_URL_PROPERTY_NAME = 
"maven.build.cache.remote.url";
-87  public static 
final String 
REMOTE_SERVER_ID_PROPERTY_NAME = "maven.build.cache.remote.server.id";
-88  public static 
final String SAVE_TO_REMOTE_PROPERTY_NAME 
= "maven.build.cache.remote.save.enabled";
-89  public static 
final String SAVE_NON_OVERRIDEABLE_NAME = 
"maven.build.cache.remote.save.final";
-90  public static 
final String FAIL_FAST_PROPERTY_NAME = 
"maven.build.cache.failFast";
-91  public static 
final String 
BASELINE_BUILD_URL_PROPERTY_NAME = "maven.build.cache.baselineUrl";
-92  public static 
final String LAZY_RESTORE_PROPERTY_NAME = 
"maven.build.cache.lazyRestore";
-93  public static 
final String 
RESTORE_GENERATED_SOURCES_PROPERTY_NAME = "maven.build.cache.restoreGeneratedSources";
-94  public static 
final String ALWAYS_RUN_PLUGINS = "maven.build.cache.alwaysRunPlugins";
-95  
-96  /**
-97   * Flag to control if we should skip lookup for 
cached artifacts globally or for a particular project even if
-98   * qualifying artifacts exist in build 
cache.
-99   * E.g. to trigger a forced build (full or for a 
particular module)
-100  * May be also activated via properties for 
projects via a profile e.g. on CI when some files produced by the build
-101  * are required (e.g. smth. from target folder 
as additional CI build artifacts):
-102  * {@code 
maven.build.cache.skipCachetruemaven.build.cache.skipCache/}
-103  */
-104 public static 
final String CACHE_SKIP = "maven.build.cache.skipCache";
-105 
-106 private static final 
Logger LOGGER = LoggerFactory.getLogger(CacheConfigImpl.class);
-107 
-108 private final 
XmlService
 xmlService;
-109 private final 
MavenSession session;
-110 private final 
RuntimeInformation rtInfo;
-111 
-112 private volatile CacheState
 state;
-113 private CacheConfig
 cacheConfig;
-114 

svn commit: r1917588 [39/42] - in /maven/website/components/extensions-archives/maven-build-cache-extension-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/legal/ apidocs/org/apache/maven/buildcache/ apid

2024-05-08 Thread olamy
Added: 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirName.html
==
--- 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirName.html
 (added)
+++ 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirName.html
 Thu May  9 00:34:30 2024
@@ -0,0 +1,111 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+
+DirName xref
+
+
+
+View
 Javadoc
+1   // === DO NOT EDIT THIS FILE 

+2   // Generated by Modello 2.1.2,
+3   // any modifications will be overwritten.
+4   // 
==
+5   
+6   package org.apache.maven.buildcache.xml.config;
+7   
+8   /**
+9* Path to a directory containing files which needs 
to be
+10   * saved/restored (relative to the build 
directory).
+11   * br
+12   * Examples :
+13   * ul
+14   *  
+15   * 
licodelt;dirNamegt;classeslt;/dirNamegt;/code
 : files
+16   * in 
${project.basedir}/target/classes/li
+17   *   
licodelt;dirName
+18   * 
glob="jacoco.xml"gt;lt;/dirNamegt;/code : jacoco 
report
+19   * files in ${project.basedir}/target/li
+20   *  
+21   * 
licodelt;dirNamegt;../src/main/javagenlt;/dirNamegt;/code
+22   * : files in ${project.basedir}/src/main/javagen 
(in this exemple,
+23   * javagen is a folder saved in git but erased on 
clean) /li
+24   * /ul
+25   * brbr
+26   * 
+27   * 
+28   * 
+29   * @version $Revision$ $Date$
+30   */
+31  @SuppressWarnings( 
"all" )
+32  public class 
DirName
+33  implements java.io.Serializable
+34  {
+35  
+36//--/
+37   //- Class/Member Variables -/
+38  //--/
+39  
+40  /**
+41   * Directory name in build output directory to 
attach to cached
+42   * artifacts.
+43   */
+44  private String value;
+45  
+46  /**
+47   * Entries are filtered by matching this 
glob.
+48   */
+49  private String glob = "*";
+50  
+51  
+52//---/
+53   //- Methods -/
+54  //---/
+55  
+56  /**
+57   * Get entries are filtered by matching this 
glob.
+58   * 
+59   * @return String
+60   */
+61  public String getGlob()
+62  {
+63  return this.glob;
+64  } //-- String getGlob()
+65  
+66  /**
+67   * Get directory name in build output directory 
to attach to
+68   * cached artifacts.
+69   * 
+70   * @return String
+71   */
+72  public String getValue()
+73  {
+74  return this.value;
+75  } //-- String getValue()
+76  
+77  /**
+78   * Set entries are filtered by matching this 
glob.
+79   * 
+80   * @param glob a glob object.
+81   */
+82  public void 
setGlob( String glob )
+83  {
+84  this.glob = glob;
+85  } //-- void setGlob( String )
+86  
+87  /**
+88   * Set directory name in build output directory 
to attach to
+89   * cached artifacts.
+90   * 
+91   * @param value a value object.
+92   */
+93  public void 
setValue( String value )
+94  {
+95  this.value = value;
+96  } //-- void setValue( String )
+97  
+98  }
+
+
+Copyright  20212024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
+
\ No newline at end of file

Modified: 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirScanConfig.html
==
--- 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirScanConfig.html
 (original)
+++ 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/DirScanConfig.html
 Thu May  9 00:34:30 2024
@@ -245,6 +245,6 @@
 237 }
 
 
-Copyright  20212023 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+Copyright  20212024 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
 
 
\ No newline at end of file

Modified: 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/Discovery.html
==
--- 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/xref/org/apache/maven/buildcache/xml/config/Discovery.html
 (original)
+++ 

svn commit: r1917588 [14/42] - in /maven/website/components/extensions-archives/maven-build-cache-extension-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/legal/ apidocs/org/apache/maven/buildcache/ apid

2024-05-08 Thread olamy
Modified: 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-summary.html
==
--- 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-summary.html
 (original)
+++ 
maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-summary.html
 Thu May  9 00:34:30 2024
@@ -3,7 +3,7 @@
 
 
 
-org.apache.maven.buildcache.xml.build.io.xpp3 (Apache Maven Build Cache 
Extension 1.1.0 API)
+org.apache.maven.buildcache.xml.build.io.xpp3 (Apache Maven Build Cache 
Extension 1.2.0 API)
 
 
 
@@ -21,7 +21,7 @@
 
 
-

Copyright © 2021–2023 https://www.apache.org/";>The Apache Software Foundation. All rights reserved.

+

Copyright © 2021–2024 https://www.apache.org/";>The Apache Software Foundation. All rights reserved.

\ No newline at end of file Modified: maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-tree.html == --- maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-tree.html (original) +++ maven/website/components/extensions-archives/maven-build-cache-extension-LATEST/apidocs/org/apache/maven/buildcache/xml/build/io/xpp3/package-tree.html Thu May 9 00:34:30 2024 @@ -3,7 +3,7 @@ -org.apache.maven.buildcache.xml.build.io.xpp3 Class Hierarchy (Apache Maven Build Cache Extension 1.1.0 API) +org.apache.maven.buildcache.xml.build.io.xpp3 Class Hierarchy (Apache Maven Build Cache Extension 1.2.0 API) @@ -21,7 +21,7 @@ - -JavaScript is disabled on your browser. - @@ -101,27 +86,18 @@ loadScripts(document, 'script');Method - + - - - - - - - -Packageorg.apache.maven.plugins.toolchain +org.apache.maven.plugins.toolchain Class ToolchainsRequirement -https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true; title="class or interface in java.lang" class="externalLink">java.lang.Object +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.plugins.toolchain.ToolchainsRequirement @@ -132,14 +108,15 @@ $('.navPadding').css('padding-top', $('. + public final class ToolchainsRequirement -extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true; title="class or interface in java.lang" class="externalLink">Object +extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true; title="class or interface in java.lang">Object Type for plugin's toolchain attribute representing toolchains requirements. Author: mkleint See Also: -the custom Plexus converter to instantiate this class +the custom Plexus converter to instantiate this class @@ -148,66 +125,56 @@ extends https://docs.oracle.com - - + Constructor Summary - + Constructors -Constructor -Description +Constructor and Description -ToolchainsRequirement() - +ToolchainsRequirement() - - - + Method Summary - + All MethodsInstance MethodsConcrete Methods Modifier and Type -Method -Description +Method and Description -https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true; title="class or interface in java.util" class="externalLink">Maphttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang" class="externalLink">String,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang" class="externalLink">String -getParams(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang" class="externalLink">Stringtype) - +https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true; title="class or interface in java.util">Maphttps://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang">String,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang">String +getParams(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true; title="class or interface in java.lang">Stringtype) -https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true; title="class or interface in java.util"

svn commit: r1917083 [9/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/dependencies.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/dependencies.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/dependencies.html
 Thu Apr 18 00:40:16 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -49,8 +49,8 @@
   Plugins/
   Apache 
Maven Toolchains Plugin/
 Project Dependencies
-| 
Last Published: 2024-04-13
-  Version: 
3.2.0-SNAPSHOT
+| 
Last Published: 2024-04-18
+  Version: 3.2.0
   
 
   
@@ -151,11 +151,11 @@
 Type
 Licenses
 
-org.codehaus.plexus
-https://codehaus-plexus.github.io/plexus-pom/plexus-utils/;>plexus-utils
-4.0.0
+javax.inject
+http://code.google.com/p/atinject/;>javax.inject
+1
 jar
-https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
 
 org.codehaus.plexus
 https://codehaus-plexus.github.io/plexus-xml/;>plexus-xml
@@ -207,9 +207,15 @@
 
 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
+https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
+
+org.eclipse.sisu
+http://www.eclipse.org/sisu/org.eclipse.sisu.plexus/;>org.eclipse.sisu.plexus
+0.9.0.M2
+jar
+http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License, 
Version 1.0
 Project Transitive 
Dependencies
 The following is a list of transitive dependencies for this project. 
Transitive dependencies are the dependencies of the project dependencies.
 test
@@ -279,11 +285,11 @@
 jar
 https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
 
-javax.inject
-http://code.google.com/p/atinject/;>javax.inject
-1
+javax.enterprise
+http://cdi-spec.org;>cdi-api
+1.2
 jar
-http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
+http://www.apache.org/licenses/LICENSE-2.0.html;>Apache License, Version 
2.0
 
 org.apache.commons
 https://commons.apache.org/proper/commons-lang/;>commons-lang3
@@ -405,14 +411,14 @@
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
 
-org.eclipse.sisu
-http://www.eclipse.org/sisu/org.eclipse.sisu.inject/;>org.eclipse.sisu.inject
-0.9.0.M2
+org.codehaus.plexus
+https://codehaus-plexus.github.io/plexus-utils/;>plexus-utils
+4.0.1
 jar
-http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License, 
Version 1.0
+https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
 
 org.eclipse.sisu
-http://www.eclipse.org/sisu/org.eclipse.sisu.plexus/;>org.eclipse.sisu.plexus
+http://www.eclipse.org/sisu/org.eclipse.sisu.inject/;>org.eclipse.sisu.inject
 0.9.0.M2
 jar
 http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License, 
Version 1.0
@@ -437,7 +443,7 @@
 
 Dependency Tree
 
-org.apache.maven.plugins:maven-toolchains-plugin:maven-plugin:3.2.0-SNAPSHOT
 
+org.apache.maven.plugins:maven-toolchains-plugin:maven-plugin:3.2.0 
 
 
 Apache Maven Toolchains Plugin
@@ -482,26 +488,17 @@
 process.
 URL: https://maven.apache.org/ref/3.9.6/maven-artifact/;>https://maven.apache.org/ref/3.9.6/maven-artifact/
 Project Licenses: https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache-2.0
-org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.9.0.M2 (provided) 
-
-
-org.eclipse.sisu.plexus
-
-
-Description: Plexus-JSR330 adapter; adds Plexus support to the 
Sisu-Inject container
-URL: http://www.eclipse.org/sisu/org.eclipse.sisu.plexus/;>http://www.eclipse.org/sisu/org.eclipse.sisu.plexus/
-Project Licenses: http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License, 
Version 1.0
-
-javax.annotation:javax.annotation-api:jar:1.2 (provided) 
+org.codehaus.plexus:plexus-utils:jar:4.0.1 (provided) 
 
 
-javax.annotation API
+Plexus Common Utilities
 
 
-Description: Common Annotations for the JavaTM Platform API
-URL: http://jcp.org/en/jsr/detail?id=250;>http://jcp.org/en/jsr/detail?id=250
-Project Licenses: https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-org.codehaus.plexus:plexus-classworlds:jar:2.7.0 (provided) 
+Description: A collection of various utility classes to ease working 
with strings, files, command lines and
+more.
+URL: https://codehaus-plexus.github.io/plexus-utils/;>https://codehaus-plexus.github.io/plexus-utils/
+Project Licenses: https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+org.codehaus.plexus:plexus-classworlds:jar:2.7.0 (provided) 
 
 
 Plexus Classworlds
@@ -510,7 +507,7 @@
 Description: A class loader framework
 URL: 

svn commit: r1917083 [5/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/SelectJdkToolchainMojo.JdkMode.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/SelectJdkToolchainMojo.JdkMode.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/SelectJdkToolchainMojo.JdkMode.html
 Thu Apr 18 00:40:16 2024
@@ -1,57 +1,43 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-SelectJdkToolchainMojo.JdkMode (Apache Maven Toolchains Plugin 
3.2.0-SNAPSHOT API)
 
+SelectJdkToolchainMojo.JdkMode (Apache Maven Toolchains Plugin 3.2.0 
API)
 
-
-
 
-
-
-
-
-
 
 
 
-var data = {"i0":9,"i1":9};
+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 = "../../../../../../";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -62,14 +48,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+PrevClass
+NextClass
+
+
+Frames
+NoFrames
 
-
-SEARCH:
-
-
-
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
 
 
@@ -101,30 +86,21 @@ loadScripts(document, 'script');Method
 
 
-
+
 
 
 
-
-
-
-
-
-
 
-
 
-Packageorg.apache.maven.plugins.toolchain.jdk
+org.apache.maven.plugins.toolchain.jdk
 Enum 
SelectJdkToolchainMojo.JdkMode
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">java.lang.Object
+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" 
class="externalLink">java.lang.EnumSelectJdkToolchainMojo.JdkMode
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">java.lang.EnumSelectJdkToolchainMojo.JdkMode
 
 
 org.apache.maven.plugins.toolchain.jdk.SelectJdkToolchainMojo.JdkMode
@@ -138,15 +114,16 @@ $('.navPadding').css('padding-top', $('.
 
 
 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" 
class="externalLink">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">ComparableSelectJdkToolchainMojo.JdkMode
+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">ComparableSelectJdkToolchainMojo.JdkMode
 
 
 Enclosing class:
-SelectJdkToolchainMojo
+SelectJdkToolchainMojo
 
 
+
 public static enum SelectJdkToolchainMojo.JdkMode
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang" class="externalLink">EnumSelectJdkToolchainMojo.JdkMode
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumSelectJdkToolchainMojo.JdkMode
 Jdk usage mode
 
 
@@ -155,87 +132,76 @@ extends https://docs.oracle.com
 
 
 
-
 
-
+
 
 
 Enum Constant Summary
-
+
 Enum Constants
 
-Enum Constant
-Description
+Enum Constant and Description
 
 
-IfMatch
-
+IfMatch
 favor the current JDK if it matches the requirements
 
 
 
-IfSame
-
+IfSame
 to not use a toolchain if the toolchains that would be 
selected is the current JDK
 
 
 
-Never
-
+Never
 always ignore the current JDK
 
 
 
 
 
-
 
-
 
-
+
 
 
 Method Summary
-
+
 All MethodsStatic MethodsConcrete Methods
 
 Modifier and Type
-Method
-Description
+Method and Description
 
 
-static SelectJdkToolchainMojo.JdkMode

svn commit: r1917083 [2/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/index-all.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/index-all.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/index-all.html
 Thu Apr 18 00:40:16 2024
@@ -1,51 +1,37 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-Index (Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT API)
 
+Index (Apache Maven Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var pathtoroot = "./";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -56,14 +42,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+Prev
+Next
 
-
-SEARCH:
-
-
-
+
+Frames
+NoFrames
+
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-
-
-
-
-
-
-CDEFGHIJLNOPRSTUVAllClassesAllPackages
+CDEFGHJLOPRSTUV
 
 
 C
 
-canConvert(Class)
 - Method in class org.apache.maven.plugins.toolchain.ToolchainConverter
+canConvert(Class)
 - Method in class org.apache.maven.plugins.toolchain.ToolchainConverter
 
 CURRENT
 - Static variable in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
 
-
+
 
 
 D
 
 DISCOVERED_TOOLCHAINS_CACHE_XML
 - Static variable in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
-discoverToolchains()
 - Method in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
+discoverToolchains()
 - Method in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
-discoverToolchains(String)
 - Method in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
+discoverToolchains(String)
 - Method in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
 Returns a PersistedToolchains object containing a list of 
discovered toolchains,
  never null.
@@ -121,35 +97,35 @@ $('.navPadding').css('padding-top', $('.
 
 Discover the JDK toolchains and print them to the 
console.
 
-DisplayDiscoveredJdkToolchainsMojo()
 - Constructor for class org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
+DisplayDiscoveredJdkToolchainsMojo()
 - Constructor for class org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
 
 
-
+
 
 
 E
 
 ENV
 - Static variable in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
-execute()
 - Method in class org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
-execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
+execute()
 - Method in class org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
+execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
 
-execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
+execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
 
-execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.SelectJdkToolchainMojo
+execute()
 - Method in class org.apache.maven.plugins.toolchain.jdk.SelectJdkToolchainMojo
 
-execute()
 - Method in class org.apache.maven.plugins.toolchain.ToolchainMojo
+execute()
 - Method in class org.apache.maven.plugins.toolchain.ToolchainMojo
 
 
-
+
 
 
 F
 
-fromConfiguration(ConverterLookup,
 PlexusConfiguration, Class, Class, ClassLoader, ExpressionEvaluator, 
ConfigurationListener) - Method in class 
org.apache.maven.plugins.toolchain.ToolchainConverter
+fromConfiguration(ConverterLookup,
 PlexusConfiguration, Class, Class, ClassLoader, ExpressionEvaluator, 
ConfigurationListener) - Method in class 
org.apache.maven.plugins.toolchain.ToolchainConverter
 
 
-
+
 
 
 G
@@ -158,24 +134,24 @@ $('.navPadding').css('padding-top', $('.
 
 Run the JDK toolchain discovery mechanism and generates a 
toolchains XML.
 
-GenerateJdkToolchainsXmlMojo()
 - Constructor for class org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
+GenerateJdkToolchainsXmlMojo()
 - Constructor for class org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
 
-getCurrentJdkToolchain()
 - Method in class org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
+getCurrentJdkToolchain()
 - Method in class 

svn commit: r1917083 [1/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Author: olamy
Date: Thu Apr 18 00:40:16 2024
New Revision: 1917083

Log:
Site checkin for project Apache Maven Toolchains Plugin

Added:

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/allclasses-frame.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/allclasses-noframe.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-frame.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-frame.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/package-frame.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/overview-frame.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/package-list
Removed:

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/allclasses-index.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/allclasses.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/allpackages-index.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/element-list

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/jquery/

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/jquery-ui.overrides.css

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/member-search-index.js

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/member-search-index.zip

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/package-search-index.js

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/package-search-index.zip

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/resources/

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/search.js

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/type-search-index.js

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/type-search-index.zip

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/cpd.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/invoker-report.html
Modified:

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/constant-values.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/deprecated-list.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/help-doc.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/index-all.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/index.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/HelpMojo.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/class-use/HelpMojo.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-summary.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-tree.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-use.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/ToolchainConverter.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/ToolchainMojo.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/ToolchainsRequirement.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/class-use/ToolchainConverter.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/class-use/ToolchainMojo.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/class-use/ToolchainsRequirement.html

maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk

svn commit: r1917083 [6/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/ToolchainDiscoverer.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/ToolchainDiscoverer.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/ToolchainDiscoverer.html
 Thu Apr 18 00:40:16 2024
@@ -1,57 +1,43 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-ToolchainDiscoverer (Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT 
API)
 
+ToolchainDiscoverer (Apache Maven Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var data = {"i0":10,"i1":10,"i2":10,"i3":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":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 = "../../../../../../";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -62,14 +48,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+PrevClass
+NextClass
+
+
+Frames
+NoFrames
 
-
-SEARCH:
-
-
-
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
 
 
@@ -101,27 +86,18 @@ loadScripts(document, 'script');Method
 
 
-
+
 
 
 
-
-
-
-
-
-
 
-
 
-Packageorg.apache.maven.plugins.toolchain.jdk
+org.apache.maven.plugins.toolchain.jdk
 Class 
ToolchainDiscoverer
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">java.lang.Object
+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.plugins.toolchain.jdk.ToolchainDiscoverer
@@ -132,10 +108,11 @@ $('.navPadding').css('padding-top', $('.
 
 
 
+
 @Named
-@Singleton
+ @Singleton
 public class ToolchainDiscoverer
-extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang" class="externalLink">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 Toolchain discoverer service: tries 
JAVA{xx}_HOME environment variables, third party installers and
  OS-specific locations.
 
@@ -149,169 +126,140 @@ extends https://docs.oracle.com
 
 
 
-
 
-
+
 
 
 Field Summary
-
+
 Fields
 
 Modifier and Type
-Field
-Description
+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" 
class="externalLink">String
-CURRENT
-
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
+CURRENT
 
 
-static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">String
-DISCOVERED_TOOLCHAINS_CACHE_XML
-
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
+DISCOVERED_TOOLCHAINS_CACHE_XML
 
 
-static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">String
-ENV
-
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
+ENV
 
 
-static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">String
-JAVA
-
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
+JAVA
 
 
-static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">String
-JAVA_HOME
-
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or 

svn commit: r1917083 [3/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-tree.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-tree.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-tree.html
 Thu Apr 18 00:40:16 2024
@@ -1,51 +1,37 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-org.apache.maven.plugins.maven_toolchains_plugin Class Hierarchy 
(Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT API)
 
+org.apache.maven.plugins.maven_toolchains_plugin Class Hierarchy 
(Apache Maven Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var pathtoroot = "../../../../../";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -56,14 +42,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+Prev
+Next
+
+
+Frames
+NoFrames
 
-
-SEARCH:
-
-
-
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-
-
-
-
-
-
 
 Hierarchy For Package 
org.apache.maven.plugins.maven_toolchains_plugin
 Package Hierarchies:
@@ -101,34 +77,29 @@ $('.navPadding').css('padding-top', $('.
 
 
 
-
 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" class="externalLink">Object
+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
 
-org.apache.maven.plugin.AbstractMojo (implements 
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo)
+org.apache.maven.plugin.AbstractMojo (implements 
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo)
 
-org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
+org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
 
 
 
 
 
-
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -139,8 +110,16 @@ $('.navPadding').css('padding-top', $('.
 
 
 
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
 
-AllClasses
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-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

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-use.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-use.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/maven_toolchains_plugin/package-use.html
 Thu Apr 18 00:40:16 2024
@@ -1,51 +1,37 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-Uses of Package org.apache.maven.plugins.maven_toolchains_plugin 
(Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT API)
 
+Uses of Package org.apache.maven.plugins.maven_toolchains_plugin 
(Apache Maven Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var pathtoroot = "../../../../../";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 

svn commit: r1917083 [7/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/class-use/ToolchainDiscoverer.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/class-use/ToolchainDiscoverer.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/class-use/ToolchainDiscoverer.html
 Thu Apr 18 00:40:16 2024
@@ -1,53 +1,39 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-Uses of Class 
org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer (Apache Maven 
Toolchains Plugin 3.2.0-SNAPSHOT API)
 
+Uses of Class 
org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer (Apache Maven 
Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var pathtoroot = "../../../../../../../";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
-Class
+Class
 Use
 Tree
 Deprecated
@@ -56,14 +42,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+Prev
+Next
 
-
-SEARCH:
-
-
-
+
+Frames
+NoFrames
+
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-
-
-
-
-
-
 
 Uses 
of Classorg.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
 
 No usage of 
org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
-Class
+Class
 Use
 Tree
 Deprecated
@@ -120,8 +93,16 @@ $('.navPadding').css('padding-top', $('.
 
 
 
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
 
-AllClasses
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-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

Added: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-frame.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-frame.html
 (added)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-frame.html
 Thu Apr 18 00:40:16 2024
@@ -0,0 +1,27 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.maven.plugins.toolchain.jdk (Apache Maven Toolchains Plugin 
3.2.0 API)
+
+
+
+
+org.apache.maven.plugins.toolchain.jdk
+
+Classes
+
+DisplayDiscoveredJdkToolchainsMojo
+GenerateJdkToolchainsXmlMojo
+SelectJdkToolchainMojo
+ToolchainDiscoverer
+
+Enums
+
+SelectJdkToolchainMojo.JdkMode
+
+
+
+
\ No newline at end of file

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-summary.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-summary.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/org/apache/maven/plugins/toolchain/jdk/package-summary.html
 Thu Apr 18 00:40:16 2024
@@ -1,51 +1,37 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-org.apache.maven.plugins.toolchain.jdk (Apache Maven Toolchains Plugin 
3.2.0-SNAPSHOT API)
 
+org.apache.maven.plugins.toolchain.jdk (Apache Maven Toolchains Plugin 
3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var 

svn commit: r1917083 [10/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apido

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/help-mojo.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/help-mojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/help-mojo.html
 Thu Apr 18 00:40:16 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -49,8 +49,8 @@
   Plugins/
   Apache 
Maven Toolchains Plugin/
 toolchains:help
-| 
Last Published: 2024-04-13
-  Version: 
3.2.0-SNAPSHOT
+| 
Last Published: 2024-04-18
+  Version: 3.2.0
   
 
   
@@ -126,7 +126,7 @@
 
 toolchains:help
 Full name:
-org.apache.maven.plugins:maven-toolchains-plugin:3.2.0-SNAPSHOT:help
+org.apache.maven.plugins:maven-toolchains-plugin:3.2.0:help
 Description:
 Display help information on maven-toolchains-plugin.
 
@@ -166,27 +166,27 @@
 If true, display all settable properties for each goal.
 
 Type: boolean
-Required: report.plugin.goal.no
+Required: No
 User Property: detail
 Default: false
 goal
 The name of the goal for which to show help. If unspecified, all goals 
will be displayed.
 
 Type: java.lang.String
-Required: report.plugin.goal.no
+Required: No
 User Property: goal
 indentSize
 The number of spaces per indentation level, should be positive.
 
 Type: int
-Required: report.plugin.goal.no
+Required: No
 User Property: indentSize
 Default: 2
 lineLength
 The maximum length of a display line, should be positive.
 
 Type: int
-Required: report.plugin.goal.no
+Required: No
 User Property: lineLength
 Default: 
80
 

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/index.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/index.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/index.html
 Thu Apr 18 00:40:16 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -50,9 +50,9 @@
   Maven/
   Plugins/
   Apache 
Maven Toolchains Plugin/
-Introduction https://github.com/apache/maven-toolchains-plugin/tree/HEAD/src/site/apt/index.apt.vm;>
-| 
Last Published: 2024-04-13
-  Version: 
3.2.0-SNAPSHOT
+Introduction https://github.com/apache/maven-toolchains-plugin/tree/maven-toolchains-plugin-3.2.0/src/site/apt/index.apt.vm;>
+| 
Last Published: 2024-04-18
+  Version: 3.2.0
   
 
   

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/issue-management.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/issue-management.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/issue-management.html
 Thu Apr 18 00:40:16 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -49,8 +49,8 @@
   Plugins/
   Apache 
Maven Toolchains Plugin/
 Issue Management
-| 
Last Published: 2024-04-13
-  Version: 
3.2.0-SNAPSHOT
+| 
Last Published: 2024-04-18
+  Version: 3.2.0
   
 
   

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/mailing-lists.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/mailing-lists.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/mailing-lists.html
 Thu Apr 18 00:40:16 2024
@@ -2,7 +2,7 @@
 
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -49,8 +49,8 @@
   Plugins/
   Apache 
Maven Toolchains Plugin/
 Project Mailing Lists
-| 
Last Published: 2024-04-13
-  Version: 
3.2.0-SNAPSHOT
+| 
Last Published: 2024-04-18
+  Version: 3.2.0
   
 
   
@@ -219,21 +219,7 @@
  
  
  
-https://www.mail-archive.com/announce@maven.apache.org;>www.mail-archive.com
-
-Maven Notifications List
-mailto:notifications-subscr...@maven.apache.org;>Subscribe
-mailto:notifications-unsubscr...@maven.apache.org;>Unsubscribe
--
-https://lists.apache.org/list.html?notificati...@maven.apache.org;>lists.apache.org
-https://mail-archives.apache.org/mod_mbox/maven-notifications/;>mail-archives.apache.org
-
- 
- 
- 
- 
- 
-https://www.mail-archive.com/notifications@maven.apache.org;>www.mail-archive.com
+https://www.mail-archive.com/announce@maven.apache.org;>www.mail-archive.com
 
   
 

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/plugin-info.html
==
--- 

svn commit: r1917083 [11/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apido

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/maven_toolchains_plugin/package-summary.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/maven_toolchains_plugin/package-summary.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/maven_toolchains_plugin/package-summary.html
 Thu Apr 18 00:40:16 2024
@@ -4,7 +4,7 @@
 
 
 
-Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT Reference Package 
org.apache.maven.plugins.maven_toolchains_plugin
+Apache Maven Toolchains Plugin 3.2.0 Reference Package 
org.apache.maven.plugins.maven_toolchains_plugin
 
 
 
@@ -23,7 +23,7 @@
 Index
 Help
 
-Apache Maven Toolchains 
Plugin 3.2.0-SNAPSHOT Reference
+Apache Maven Toolchains 
Plugin 3.2.0 Reference
 
 
 
@@ -81,7 +81,7 @@
 Index
 Help
 
-Apache Maven Toolchains 
Plugin 3.2.0-SNAPSHOT Reference
+Apache Maven Toolchains 
Plugin 3.2.0 Reference
 
 
 

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/ToolchainMojo.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/ToolchainMojo.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/ToolchainMojo.html
 Thu Apr 18 00:40:16 2024
@@ -69,10 +69,10 @@
 61  
 62  /**
 63   * Toolchains requirements, specified by one
-64   * pre  
lt;toolchain-typegt;
-65   * lt;paramgt;expected 
valuelt;/paramgt;
+64   * pre{@code   
toolchain-type
+65   * paramexpected 
value/param
 66   * ...
-67   *   
lt;/toolchain-typegt;/pre
+67   *   /toolchain-type}/pre
 68   * element for each required toolchain.
 69   */
 70  
@Parameter(required = true)

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-frame.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-frame.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-frame.html
 Thu Apr 18 00:40:16 2024
@@ -4,7 +4,7 @@
 
 
 
-Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT Reference Package 
org.apache.maven.plugins.toolchain.jdk
+Apache Maven Toolchains Plugin 3.2.0 Reference Package 
org.apache.maven.plugins.toolchain.jdk
 
 
 

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-summary.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-summary.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/jdk/package-summary.html
 Thu Apr 18 00:40:16 2024
@@ -4,7 +4,7 @@
 
 
 
-Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT Reference Package 
org.apache.maven.plugins.toolchain.jdk
+Apache Maven Toolchains Plugin 3.2.0 Reference Package 
org.apache.maven.plugins.toolchain.jdk
 
 
 
@@ -23,7 +23,7 @@
 Index
 Help
 
-Apache Maven Toolchains 
Plugin 3.2.0-SNAPSHOT Reference
+Apache Maven Toolchains 
Plugin 3.2.0 Reference
 
 
 
@@ -101,7 +101,7 @@
 Index
 Help
 
-Apache Maven Toolchains 
Plugin 3.2.0-SNAPSHOT Reference
+Apache Maven Toolchains 
Plugin 3.2.0 Reference
 
 
 

Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/package-frame.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/xref/org/apache/maven/plugins/toolchain/package-frame.html
 (original)
+++ 

svn commit: r1917083 [8/11] - in /maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/org/apache/maven/plugins/maven_toolchains_plugin/ apidoc

2024-04-17 Thread olamy
Modified: 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/overview-tree.html
==
--- 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/overview-tree.html
 (original)
+++ 
maven/website/components/plugins-archives/maven-toolchains-plugin-LATEST/apidocs/overview-tree.html
 Thu Apr 18 00:40:16 2024
@@ -1,51 +1,37 @@
-
+http://www.w3.org/TR/html4/loose.dtd;>
 
 
 
 
-Class Hierarchy (Apache Maven Toolchains Plugin 3.2.0-SNAPSHOT 
API)
 
+Class Hierarchy (Apache Maven Toolchains Plugin 3.2.0 API)
 
-
-
 
-
-
-
-
-
 
 
 
-var pathtoroot = "./";
-var useModuleDirectories = true;
-loadScripts(document, 'script');
+
 
 JavaScript is disabled on your browser.
 
-
-
-
 
-
+
 
 
 Skip navigation links
-
+
 
 
 
-Overview
+Overview
 Package
 Class
 Use
@@ -56,14 +42,16 @@ loadScripts(document, 'script');
 
 
-
-AllClasses
+
+Prev
+Next
+
+
+Frames
+NoFrames
 
-
-SEARCH:
-
-
-
+
+AllClasses
 
 
 
 
-
-JavaScript is disabled on your browser.
-
 
-
+
 
 
 
-
-
-
-
-
-
-
 
 Hierarchy For All Packages
 Package Hierarchies:
@@ -103,59 +79,52 @@ $('.navPadding').css('padding-top', $('.
 
 
 
-
 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" class="externalLink">Object
+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
 
-org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter
 (implements 
org.codehaus.plexus.component.configurator.converters.ConfigurationConverter)
+org.codehaus.plexus.component.configurator.converters.AbstractConfigurationConverter
 (implements 
org.codehaus.plexus.component.configurator.converters.ConfigurationConverter)
 
-org.apache.maven.plugins.toolchain.ToolchainConverter
+org.apache.maven.plugins.toolchain.ToolchainConverter
 
 
-org.apache.maven.plugin.AbstractMojo (implements 
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo)
+org.apache.maven.plugin.AbstractMojo (implements 
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo)
 
-org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
-org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
-org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
-org.apache.maven.plugins.toolchain.jdk.SelectJdkToolchainMojo
-org.apache.maven.plugins.toolchain.ToolchainMojo
+org.apache.maven.plugins.toolchain.jdk.DisplayDiscoveredJdkToolchainsMojo
+org.apache.maven.plugins.toolchain.jdk.GenerateJdkToolchainsXmlMojo
+org.apache.maven.plugins.maven_toolchains_plugin.HelpMojo
+org.apache.maven.plugins.toolchain.jdk.SelectJdkToolchainMojo
+org.apache.maven.plugins.toolchain.ToolchainMojo
 
 
-org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
-org.apache.maven.plugins.toolchain.ToolchainsRequirement
+org.apache.maven.plugins.toolchain.jdk.ToolchainDiscoverer
+org.apache.maven.plugins.toolchain.ToolchainsRequirement
 
 
 
-
-
 Enum 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" class="externalLink">Object
+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/Enum.html?is-external=true;
 title="class or interface in java.lang" class="externalLink">EnumE (implements java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang" 
class="externalLink">ComparableT, java.io.https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io" class="externalLink">Serializable)
+java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumE (implements java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableT, 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)
 

(maven-toolchains-plugin) annotated tag maven-toolchains-plugin-3.2.0 updated (047dca6 -> c6b4493)

2024-04-17 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to annotated tag maven-toolchains-plugin-3.2.0
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


*** WARNING: tag maven-toolchains-plugin-3.2.0 was modified! ***

from 047dca6  (commit)
  to c6b4493  (tag)
 tagging 047dca638d0ecf6d58e00e36fceeceb57a675fad (commit)
 replaces maven-toolchains-plugin-3.1.0
  by Olivier Lamy
  on Thu Apr 18 10:34:06 2024 +1000

- Log -
[maven-release-plugin] copy for tag maven-toolchains-plugin-3.2.0
-BEGIN PGP SIGNATURE-

iF0EABECAB0WIQTyVLNWF9wlXZNEvPqHOo6GtDchRgUCZiBqfgAKCRCHOo6GtDch
Rjo2AJ9PSE1GgyCr9XOsHqSqUuIPA8KkTQCfT/iAVNy9HLiS8RdB2ncg8DncrDI=
=7CIt
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



(maven-toolchains-plugin) branch master updated: [maven-release-plugin] prepare for next development iteration

2024-04-17 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new c5edd01  [maven-release-plugin] prepare for next development iteration
c5edd01 is described below

commit c5edd013b6d7180c8f0712e02abc61b50993f44a
Author: Olivier Lamy 
AuthorDate: Thu Apr 18 10:34:08 2024 +1000

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 04e4f67..973d85a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
   
 
   maven-toolchains-plugin
-  3.2.0
+  3.2.1-SNAPSHOT
   maven-plugin
 
   Apache Maven Toolchains Plugin
@@ -48,7 +48,7 @@ under the License.
   
 
scm:git:https://github.com/apache/maven-toolchains-plugin.git
 
scm:git:https://github.com/apache/maven-toolchains-plugin.git
-maven-toolchains-plugin-3.2.0
+HEAD
 
https://github.com/apache/maven-toolchains-plugin/tree/${project.scm.tag}
   
   
@@ -69,7 +69,7 @@ under the License.
   
 8
 3.9.6
-
2024-04-18T00:33:52Z
+
2024-04-18T00:34:08Z
   
 
   



(maven-toolchains-plugin) branch master updated (f054d2d -> 047dca6)

2024-04-17 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


from f054d2d  use github because it is more convenient
 add 047dca6  [maven-release-plugin] prepare release 
maven-toolchains-plugin-3.2.0

No new revisions were added by this update.

Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



(maven-toolchains-plugin) branch master updated: use github because it is more convenient

2024-04-17 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new f054d2d  use github because it is more convenient
f054d2d is described below

commit f054d2d1c86308408658b83aad652221dd80e223
Author: Olivier Lamy 
AuthorDate: Thu Apr 18 10:22:13 2024 +1000

use github because it is more convenient

Signed-off-by: Olivier Lamy 
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 16aa446..b9f2b5b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,8 +46,8 @@ under the License.
   
 
   
-
scm:git:https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git
-
scm:git:https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git
+
scm:git:https://github.com/apache/maven-toolchains-plugin.git
+
scm:git:https://github.com/apache/maven-toolchains-plugin.git
 HEAD
 
https://github.com/apache/maven-toolchains-plugin/tree/${project.scm.tag}
   



(maven-toolchains-plugin) branch master updated: Create release-drafter.yml

2024-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 7ee4c2c  Create release-drafter.yml
7ee4c2c is described below

commit 7ee4c2c4b565ba72160cbed350dd06b28075aad5
Author: Olivier Lamy 
AuthorDate: Thu Apr 11 11:33:43 2024 +0200

Create release-drafter.yml
---
 .github/workflows/release-drafter.yml | 25 +
 1 file changed, 25 insertions(+)

diff --git a/.github/workflows/release-drafter.yml 
b/.github/workflows/release-drafter.yml
new file mode 100644
index 000..1049eaa
--- /dev/null
+++ b/.github/workflows/release-drafter.yml
@@ -0,0 +1,25 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+   
+name: Release Drafter
+on:
+  push:
+branches:
+  - master
+jobs:
+   update_release_draft:
+  uses: 
apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4



(maven-toolchains-plugin) branch master updated: Create release-drafter.yml

2024-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-toolchains-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new e64a5e5  Create release-drafter.yml
e64a5e5 is described below

commit e64a5e5d3df77c18d04da900abfb1c288441755b
Author: Olivier Lamy 
AuthorDate: Thu Apr 11 11:33:09 2024 +0200

Create release-drafter.yml
---
 .github/release-drafter.yml | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml
new file mode 100644
index 000..9f8086f
--- /dev/null
+++ b/.github/release-drafter.yml
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+_extends: maven-gh-actions-shared
+tag-template:  maven-toolchains-plugin-$NEXT_MINOR_VERSION



(maven-site) branch master updated: Maven Invoker plugin 3.6.1

2024-04-01 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site.git


The following commit(s) were added to refs/heads/master by this push:
 new c2a24dc4 Maven Invoker plugin 3.6.1
c2a24dc4 is described below

commit c2a24dc4f0a64bb9a54d83fae84f689a54faf4a2
Author: Olivier Lamy 
AuthorDate: Mon Apr 1 17:14:54 2024 +1000

Maven Invoker plugin 3.6.1

Signed-off-by: Olivier Lamy 
---
 content/apt/plugins/index.apt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/apt/plugins/index.apt b/content/apt/plugins/index.apt
index fd7109aa..9bd528b9 100644
--- a/content/apt/plugins/index.apt
+++ b/content/apt/plugins/index.apt
@@ -149,7 +149,7 @@ Available Plugins
 
*--++--++--+++
 | {{{/plugins/maven-help-plugin/} <<>>}} | B  | 
3.4.0| 2023-03-14 | Get information about the working environment for 
the project. | 
{{{https://gitbox.apache.org/repos/asf/maven-help-plugin.git}Git}} / 
{{{https://github.com/apache/maven-help-plugin/}GitHub}} | 
{{{https://issues.apache.org/jira/browse/MPH}Jira MPH}}
 
*--++--++--+++
-| {{{/plugins/maven-invoker-plugin/} <<>>}}   | B+R| 
3.6.0| 2023-06-11 | Run a set of Maven projects and verify the output. 
| {{{https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git}Git}} / 
{{{https://github.com/apache/maven-invoker-plugin/}GitHub}} | 
{{{https://issues.apache.org/jira/browse/MINVOKER}Jira MINVOKER}}
+| {{{/plugins/maven-invoker-plugin/} <<>>}}   | B+R| 
3.6.1| 2024-04-01 | Run a set of Maven projects and verify the output. 
| {{{https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git}Git}} / 
{{{https://github.com/apache/maven-invoker-plugin/}GitHub}} | 
{{{https://issues.apache.org/jira/browse/MINVOKER}Jira MINVOKER}}
 
*--++--++--+++
 | {{{/plugins/maven-jarsigner-plugin/} <<>>}}   | B  | 
3.0.0| 2018-11-06 | Signs or verifies project artifacts. | 
{{{https://gitbox.apache.org/repos/asf/maven-jarsigner-plugin.git}Git}} / 
{{{https://github.com/apache/maven-jarsigner-plugin/}GitHub}} | 
{{{https://issues.apache.org/jira/browse/MJARSIGNER}Jira MJARSIGNER}}
 
*--++--++--+++



svn commit: r1916700 - /maven/website/components/plugins/maven-invoker-plugin/

2024-04-01 Thread olamy
Author: olamy
Date: Mon Apr  1 07:11:46 2024
New Revision: 1916700

Log:
Publish 3.6.1 doc release

Added:
maven/website/components/plugins/maven-invoker-plugin/
  - copied from r1916699, 
maven/website/components/plugins-archives/maven-invoker-plugin-LATEST/



svn commit: r1916699 - /maven/website/components/plugins/maven-invoker-plugin/

2024-04-01 Thread olamy
Author: olamy
Date: Mon Apr  1 07:11:06 2024
New Revision: 1916699

Log:
remove 3.6.0

Removed:
maven/website/components/plugins/maven-invoker-plugin/



svn commit: r68218 - /release/maven/plugins/

2024-04-01 Thread olamy
Author: olamy
Date: Mon Apr  1 07:07:12 2024
New Revision: 68218

Log:
Maven Invoker plugin 3.6.1

Added:
release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip   (with 
props)
release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.asc
release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.sha512
Removed:
release/maven/plugins/maven-invoker-plugin-3.6.0-source-release.zip
release/maven/plugins/maven-invoker-plugin-3.6.0-source-release.zip.asc
release/maven/plugins/maven-invoker-plugin-3.6.0-source-release.zip.sha512

Added: release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip
==
Binary file - no diff available.

Propchange: release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip
--
svn:mime-type = application/octet-stream

Added: release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.asc
==
--- release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.asc 
(added)
+++ release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.asc Mon 
Apr  1 07:07:12 2024
@@ -0,0 +1,6 @@
+-BEGIN PGP SIGNATURE-
+
+iF0EABEKAB0WIQTyVLNWF9wlXZNEvPqHOo6GtDchRgUCZgO2MgAKCRCHOo6GtDch
+RqMAAJ9ZKJxo5fFB7Xz25VV8fkp5PXhULwCcCyoh7sihnnDSGUDJ6fEnmVpmDHs=
+=VQeU
+-END PGP SIGNATURE-

Added: 
release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.sha512
==
--- release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.sha512 
(added)
+++ release/maven/plugins/maven-invoker-plugin-3.6.1-source-release.zip.sha512 
Mon Apr  1 07:07:12 2024
@@ -0,0 +1 @@
+3fd036cbeb88125a791ff6e3c849de7322b8d8afa65e4b96646a0d7a959069df7bdfba41d83ffafa096811d4ec794659ef44c0508da47ae8f9cbaf6e1eb6
\ No newline at end of file




(maven-build-cache-extension) branch master updated: [MBUILDCACHE-71] Store the build info after storing the artifacts. (#138)

2024-03-29 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git


The following commit(s) were added to refs/heads/master by this push:
 new 35a53a9  [MBUILDCACHE-71] Store the build info after storing the 
artifacts. (#138)
35a53a9 is described below

commit 35a53a9b373af4136e1d57288867b2509b3c02eb
Author: amirhadadi 
AuthorDate: Fri Mar 29 12:04:33 2024 +0300

[MBUILDCACHE-71] Store the build info after storing the artifacts. (#138)

This is done for 2 reasons:
1) To prevent a race condition where build X is storing the build info and 
build Y is pulling that info and attempting to use the artifacts before build X 
stored them.

2) When a build is killed (for any reason) after the build info is stored 
but before the artifacts are stored, a later build will attempt to use the 
non-existing artifacts.

Co-authored-by: ahadadi 
---
 src/main/java/org/apache/maven/buildcache/CacheControllerImpl.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/maven/buildcache/CacheControllerImpl.java 
b/src/main/java/org/apache/maven/buildcache/CacheControllerImpl.java
index 4c5a98b..d1fd195 100644
--- a/src/main/java/org/apache/maven/buildcache/CacheControllerImpl.java
+++ b/src/main/java/org/apache/maven/buildcache/CacheControllerImpl.java
@@ -500,7 +500,6 @@ public class CacheControllerImpl implements CacheController 
{
 
 // if package phase presence means new artifacts were packaged
 if (project.hasLifecyclePhase("package")) {
-localCache.saveBuildInfo(cacheResult, build);
 if (projectArtifact.getFile() != null) {
 localCache.saveArtifactFile(cacheResult, projectArtifact);
 }
@@ -518,10 +517,10 @@ public class CacheControllerImpl implements 
CacheController {
 }
 }
 }
-} else {
-localCache.saveBuildInfo(cacheResult, build);
 }
 
+localCache.saveBuildInfo(cacheResult, build);
+
 if (cacheConfig.isBaselineDiffEnabled()) {
 produceDiffReport(cacheResult, build);
 }



svn commit: r1916571 - in /maven/website/components/plugins-archives/maven-invoker-plugin-LATEST: ./ apidocs/ apidocs/jquery/ apidocs/jquery/external/ apidocs/jquery/external/jquery/ apidocs/jquery/js

2024-03-27 Thread olamy
Author: olamy
Date: Wed Mar 27 06:07:15 2024
New Revision: 1916571

Log:
Site checkin for project Apache Maven Invoker Plugin


[This commit notification would consist of 70 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


(maven-invoker-plugin) branch master updated: [maven-release-plugin] prepare for next development iteration

2024-03-27 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new e4f918b  [maven-release-plugin] prepare for next development iteration
e4f918b is described below

commit e4f918b64b43d72d96908e3044604ddce275c5c8
Author: Olivier Lamy 
AuthorDate: Wed Mar 27 16:01:10 2024 +1000

[maven-release-plugin] prepare for next development iteration
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index c720c37..c04f750 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ under the License.
   
 
   maven-invoker-plugin
-  3.6.1
+  3.6.2-SNAPSHOT
   maven-plugin
 
   Apache Maven Invoker Plugin
@@ -42,7 +42,7 @@ under the License.
   
 
scm:git:https://github.com/apache/maven-invoker-plugin.git
 
scm:git:https://github.com/apache/maven-invoker-plugin.git
-maven-invoker-plugin-3.6.1
+HEAD
 
https://github.com/apache/maven-invoker-plugin/tree/${project.scm.tag}
   
   
@@ -66,7 +66,7 @@ under the License.
 org.apache-extras.beanshell
 bsh
 2.0b6
-
2024-03-27T06:01:00Z
+
2024-03-27T06:01:10Z
 4.0.20
   
 



(maven-invoker-plugin) annotated tag maven-invoker-plugin-3.6.1 updated (324d17e -> efb7ce2)

2024-03-27 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to annotated tag maven-invoker-plugin-3.6.1
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


*** WARNING: tag maven-invoker-plugin-3.6.1 was modified! ***

from 324d17e  (commit)
  to efb7ce2  (tag)
 tagging 324d17eb353228933bcfaef024563e6306d0ebf3 (commit)
 replaces maven-invoker-plugin-3.6.0
  by Olivier Lamy
  on Wed Mar 27 16:01:09 2024 +1000

- Log -
[maven-release-plugin] copy for tag maven-invoker-plugin-3.6.1
-BEGIN PGP SIGNATURE-

iF0EABECAB0WIQTyVLNWF9wlXZNEvPqHOo6GtDchRgUCZgO2JQAKCRCHOo6GtDch
RnrDAJ9C1xU4MEzrwGT3DIMuWi1g9em72ACdEfWI3ZRRhMRCVrLduu2FIyApZnA=
=AHGQ
-END PGP SIGNATURE-
---


No new revisions were added by this update.

Summary of changes:



(maven-invoker-plugin) branch master updated (3cb6f32 -> 324d17e)

2024-03-27 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


from 3cb6f32  use github for all scm elements
 add 324d17e  [maven-release-plugin] prepare release 
maven-invoker-plugin-3.6.1

No new revisions were added by this update.

Summary of changes:
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)



(maven-invoker-plugin) branch master updated: use github for all scm elements

2024-03-27 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new 3cb6f32  use github for all scm elements
3cb6f32 is described below

commit 3cb6f325d220b72a75b664ddc9c14ba4a1097eff
Author: Olivier Lamy 
AuthorDate: Wed Mar 27 16:00:26 2024 +1000

use github for all scm elements

Signed-off-by: Olivier Lamy 
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 23c52e5..18df98c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,8 +40,8 @@ under the License.
   
 
   
-
scm:git:https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git
-
scm:git:https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git
+
scm:git:https://github.com/apache/maven-invoker-plugin.git
+
scm:git:https://github.com/apache/maven-invoker-plugin.git
 HEAD
 
https://github.com/apache/maven-invoker-plugin/tree/${project.scm.tag}
   



(maven-invoker-plugin) branch code-improvements deleted (was 7abb1c3)

2024-03-21 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch code-improvements
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


 was 7abb1c3  - Removed negative logic - Removed unused code - Improved 
code.

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(maven-invoker-plugin) branch master updated: - Removed negative logic (#212)

2024-03-21 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git


The following commit(s) were added to refs/heads/master by this push:
 new fcae667  - Removed negative logic (#212)
fcae667 is described below

commit fcae667b070815fae176b06fb2393a940a3a9670
Author: Karl Heinz Marbaise 
AuthorDate: Thu Mar 21 21:57:20 2024 +0100

- Removed negative logic (#212)

- Removed unused code
- Improved code.
---
 .../maven/plugins/invoker/SelectorUtils.java   | 48 +-
 1 file changed, 11 insertions(+), 37 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/invoker/SelectorUtils.java 
b/src/main/java/org/apache/maven/plugins/invoker/SelectorUtils.java
index 00b5400..ded4fad 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/SelectorUtils.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/SelectorUtils.java
@@ -73,17 +73,10 @@ class SelectorUtils {
 }
 
 static boolean isOsFamily(List families, boolean defaultMatch) {
-if (families != null && !families.isEmpty()) {
-for (String family : families) {
-if (Os.isFamily(family)) {
-return true;
-}
-}
-
-return false;
-} else {
+if (families == null || families.isEmpty()) {
 return defaultMatch;
 }
+return families.stream().anyMatch(Os::isFamily);
 }
 
 /**
@@ -139,10 +132,6 @@ class SelectorUtils {
 return null;
 }
 
-static boolean isMavenVersion(String mavenSpec) {
-return isMavenVersion(mavenSpec, getMavenVersion());
-}
-
 static boolean isMavenVersion(String mavenSpec, String actualVersion) {
 List includes = new ArrayList<>();
 List excludes = new ArrayList<>();
@@ -157,15 +146,6 @@ class SelectorUtils {
 return System.getProperty("java.version", "");
 }
 
-static String getJreVersion(File javaHome) {
-// @todo detect actual version
-return null;
-}
-
-static boolean isJreVersion(String jreSpec) {
-return isJreVersion(jreSpec, getJreVersion());
-}
-
 static boolean isJreVersion(String jreSpec, String actualJreVersion) {
 List includes = new ArrayList<>();
 List excludes = new ArrayList<>();
@@ -176,33 +156,27 @@ class SelectorUtils {
 return isJreVersion(jreVersion, includes, true) && 
!isJreVersion(jreVersion, excludes, false);
 }
 
-static boolean isJreVersion(List jreVersion, List 
versionPatterns, boolean defaultMatch) {
-if (versionPatterns != null && !versionPatterns.isEmpty()) {
-for (String versionPattern : versionPatterns) {
-if (isJreVersion(jreVersion, versionPattern)) {
-return true;
-}
-}
-
-return false;
-} else {
+static boolean isJreVersion(List jreVersions, List 
versionPatterns, boolean defaultMatch) {
+if (versionPatterns == null || versionPatterns.isEmpty()) {
 return defaultMatch;
 }
+
+return versionPatterns.stream().anyMatch(versionPattern -> 
isJreVersion(jreVersions, versionPattern));
 }
 
-static boolean isJreVersion(List jreVersion, String 
versionPattern) {
+static boolean isJreVersion(List jreVersions, String 
versionPattern) {
 List checkVersion = parseVersion(versionPattern);
 
 if (versionPattern.endsWith("+")) {
 // 1.5+ <=> [1.5,)
-return compareVersions(jreVersion, checkVersion) >= 0;
+return compareVersions(jreVersions, checkVersion) >= 0;
 } else if (versionPattern.endsWith("-")) {
 // 1.5- <=> (,1.5)
-return compareVersions(jreVersion, checkVersion) < 0;
+return compareVersions(jreVersions, checkVersion) < 0;
 } else {
 // 1.5 <=> [1.5,1.6)
-return checkVersion.size() <= jreVersion.size()
-&& checkVersion.equals(jreVersion.subList(0, 
checkVersion.size()));
+return checkVersion.size() <= jreVersions.size()
+&& checkVersion.equals(jreVersions.subList(0, 
checkVersion.size()));
 }
 }
 



  1   2   3   4   5   6   7   8   9   10   >