[maven-archetype] branch dependabot/maven/org.codehaus.plexus-plexus-interactivity-api-1.1 created (now 6b9bc1c)

2021-10-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.codehaus.plexus-plexus-interactivity-api-1.1
in repository https://gitbox.apache.org/repos/asf/maven-archetype.git.


  at 6b9bc1c  Bump plexus-interactivity-api from 1.0 to 1.1

No new revisions were added by this update.


[maven-help-plugin] branch dependabot/maven/org.apache.maven-maven-model-3.8.3 created (now f215502)

2021-10-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven-maven-model-3.8.3
in repository https://gitbox.apache.org/repos/asf/maven-help-plugin.git.


  at f215502  Bump maven-model from 3.8.2 to 3.8.3

No new revisions were added by this update.


[maven-integration-testing] branch MNG-6914_2 created (now 1c45189)

2021-10-11 Thread hboutemy
This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a change to branch MNG-6914_2
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git.


  at 1c45189  [MNG-6914] update wrapper distro directory, now 
apache-maven-wrapper

This branch includes the following new commits:

 new 1c45189  [MNG-6914] update wrapper distro directory, now 
apache-maven-wrapper

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] 01/01: [MNG-7270] Switch to shell alternative to "which"

2021-10-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-7270-maven-3.8.x
in repository https://gitbox.apache.org/repos/asf/maven.git

commit fb5f3f5b0f36d3232b0193c1d9b33fd0b36b9601
Author: Jonathan Dowland 
AuthorDate: Wed Sep 29 11:29:35 2021 +0100

[MNG-7270] Switch to shell alternative to "which"

In some circumstances the init script calls `which`, which may or may not be
available on the host system. Instead, use `command -v`, which is nearly
equivalent. One area it differs is if the command being queried is defined 
as
a shell alias. To avoid that, call `unset -f command` to avoid the situation
where "command" has been re-defined as a shell function.

See here for more information on this approach:


Tested with bash, sh (bash invoked as sh), posh, dash, zsh and mksh.

This closes #556
---
 apache-maven/src/bin/mvn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-maven/src/bin/mvn b/apache-maven/src/bin/mvn
index 90f9a75..dfa384b 100755
--- a/apache-maven/src/bin/mvn
+++ b/apache-maven/src/bin/mvn
@@ -94,7 +94,7 @@ if $mingw ; then
 fi
 
 if [ -z "$JAVA_HOME" ] ; then
-  JAVACMD=`which java`
+  JAVACMD="`\\unset -f command; \\command -v java`"
 else
   JAVACMD="$JAVA_HOME/bin/java"
 fi


[maven] branch MNG-7270-maven-3.8.x created (now fb5f3f5)

2021-10-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MNG-7270-maven-3.8.x
in repository https://gitbox.apache.org/repos/asf/maven.git.


  at fb5f3f5  [MNG-7270] Switch to shell alternative to "which"

This branch includes the following new commits:

 new fb5f3f5  [MNG-7270] Switch to shell alternative to "which"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] branch MNG-7270 created (now 8852b87)

2021-10-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch MNG-7270
in repository https://gitbox.apache.org/repos/asf/maven.git.


  at 8852b87  [MNG-7270] Switch to shell alternative to "which"

This branch includes the following new commits:

 new 8852b87  [MNG-7270] Switch to shell alternative to "which"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] 01/01: [MNG-7270] Switch to shell alternative to "which"

2021-10-11 Thread michaelo
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-7270
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 8852b87412c0af70efcee76f1bb12bc44635aab1
Author: Jonathan Dowland 
AuthorDate: Wed Sep 29 11:29:35 2021 +0100

[MNG-7270] Switch to shell alternative to "which"

In some circumstances the init script calls `which`, which may or may not be
available on the host system. Instead, use `command -v`, which is nearly
equivalent. One area it differs is if the command being queried is defined 
as
a shell alias. To avoid that, call `unset -f command` to avoid the situation
where "command" has been re-defined as a shell function.

See here for more information on this approach:


Tested with bash, sh (bash invoked as sh), posh, dash, zsh and mksh.

This closes #556
---
 apache-maven/src/assembly/shared/init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-maven/src/assembly/shared/init 
b/apache-maven/src/assembly/shared/init
index fe8780b..619bc4d 100755
--- a/apache-maven/src/assembly/shared/init
+++ b/apache-maven/src/assembly/shared/init
@@ -20,7 +20,7 @@ if [ -n "$JAVA_HOME" ] ; then
 fi
   fi
 else
-  JAVACMD="`which java`"
+  JAVACMD="`\\unset -f command; \\command -v java`"
 
   if [ ! -x "$JAVACMD" ] ; then
 echo "The java(1) command does not exist in PATH nor is JAVA_HOME set, so 
Apache Maven cannot be started." >&2


[maven] branch master updated: [MNG-7297] Remove redundant type arguments (#581)

2021-10-11 Thread slachiewicz
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 0080e84  [MNG-7297] Remove redundant type arguments (#581)
0080e84 is described below

commit 0080e845884922814d26914d0ae9f59b084bee35
Author: Arturo Bernal 
AuthorDate: Mon Oct 11 20:58:38 2021 +0200

[MNG-7297] Remove redundant type arguments (#581)
---
 .../org/apache/maven/repository/MetadataResolutionResult.java | 8 
 maven-core/src/main/java/org/apache/maven/DefaultMaven.java   | 2 +-
 maven-core/src/main/java/org/apache/maven/RepositoryUtils.java| 2 +-
 .../apache/maven/artifact/resolver/ArtifactResolutionResult.java  | 8 
 .../org/apache/maven/classrealm/DefaultClassRealmManager.java | 2 +-
 .../main/java/org/apache/maven/exception/ExceptionSummary.java| 2 +-
 .../maven/execution/scope/internal/MojoExecutionScopeModule.java  | 4 ++--
 .../java/org/apache/maven/lifecycle/internal/MojoExecutor.java| 4 ++--
 .../maven/model/plugin/DefaultLifecycleBindingsInjector.java  | 2 +-
 .../java/org/apache/maven/plugin/DefaultPluginRealmCache.java | 2 +-
 .../apache/maven/plugin/internal/DefaultMavenPluginManager.java   | 2 +-
 .../apache/maven/project/DefaultDependencyResolutionResult.java   | 2 +-
 .../java/org/apache/maven/project/DefaultProjectRealmCache.java   | 2 +-
 .../src/main/java/org/apache/maven/project/MavenProject.java  | 2 +-
 .../maven/project/artifact/DefaultProjectArtifactsCache.java  | 4 ++--
 .../java/org/apache/maven/project/artifact/ProjectArtifact.java   | 2 +-
 .../org/apache/maven/session/scope/internal/SessionScope.java | 2 +-
 .../apache/maven/session/scope/internal/SessionScopeModule.java   | 2 +-
 .../src/main/java/org/apache/maven/model/building/Result.java | 4 ++--
 .../java/org/apache/maven/plugin/descriptor/PluginDescriptor.java | 2 +-
 20 files changed, 30 insertions(+), 30 deletions(-)

diff --git 
a/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
 
b/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
index 7be1d96..2d1c5db 100644
--- 
a/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
+++ 
b/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
@@ -119,7 +119,7 @@ public class MetadataResolutionResult
 public List getMissingArtifacts()
 {
 return missingArtifacts == null
-   ? Collections.emptyList()
+   ? Collections.emptyList()
: Collections.unmodifiableList( missingArtifacts );
 
 }
@@ -152,7 +152,7 @@ public class MetadataResolutionResult
 public List getExceptions()
 {
 return exceptions == null
-   ? Collections.emptyList()
+   ? Collections.emptyList()
: Collections.unmodifiableList( exceptions );
 
 }
@@ -192,7 +192,7 @@ public class MetadataResolutionResult
 public List getVersionRangeViolations()
 {
 return versionRangeViolations == null
-   ? Collections.emptyList()
+   ? Collections.emptyList()
: Collections.unmodifiableList( versionRangeViolations );
 
 }
@@ -227,7 +227,7 @@ public class MetadataResolutionResult
 public List getMetadataResolutionExceptions()
 {
 return metadataResolutionExceptions == null
-   ? Collections.emptyList()
+   ? Collections.emptyList()
: Collections.unmodifiableList( 
metadataResolutionExceptions );
 
 }
diff --git a/maven-core/src/main/java/org/apache/maven/DefaultMaven.java 
b/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
index cae176d..c0955a7 100644
--- a/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
+++ b/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
@@ -371,7 +371,7 @@ public class DefaultMaven
 throws MavenExecutionException
 {
 // CHECKSTYLE_OFF: LineLength
-for ( AbstractMavenLifecycleParticipant listener : 
getLifecycleParticipants( Collections.emptyList() ) )
+for ( AbstractMavenLifecycleParticipant listener : 
getLifecycleParticipants( Collections.emptyList() ) )
 // CHECKSTYLE_ON: LineLength
 {
 listener.afterSessionStart( session );
diff --git a/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java 
b/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
index ceb6ba3..bafed36 100644
--- a/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
+++ b/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
@@ -121,7 +121,7 @@ public class RepositoryUtils
 nodeTrail.addAll( trail );
 nodeTrail.add( artifact.getId() );
 
-

[maven-remote-resources-plugin] branch stabilize deleted (was 731df1e)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git.


 was 731df1e  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-remote-resources-plugin] branch master updated (d5667e1 -> 731df1e)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

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


from d5667e1  [MRRESOURCES-118] Require Maven 3.2.0 (fix previous commit)
 add 731df1e  Fix JavaDoc

No new revisions were added by this update.

Summary of changes:
 .../maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java   | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)


[maven-docck-plugin] branch stabilize deleted (was 08fe1a8)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-docck-plugin.git.


 was 08fe1a8  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-docck-plugin] branch master updated (1e08962 -> 08fe1a8)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

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


from 1e08962  update CI url
 add 08fe1a8  Fix JavaDoc

No new revisions were added by this update.

Summary of changes:
 .../org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java   | 2 --
 1 file changed, 2 deletions(-)


[maven-docck-plugin] branch stabilize created (now 08fe1a8)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-docck-plugin.git.


  at 08fe1a8  Fix JavaDoc

This branch includes the following new commits:

 new 08fe1a8  Fix JavaDoc

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-docck-plugin] 01/01: Fix JavaDoc

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch stabilize
in repository https://gitbox.apache.org/repos/asf/maven-docck-plugin.git

commit 08fe1a8c8c4cfaafae6c6d51bc1109c570a59a78
Author: rfscholte 
AuthorDate: Mon Oct 11 20:27:15 2021 +0200

Fix JavaDoc
---
 .../org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/src/main/java/org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java
 
b/src/main/java/org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java
index a6fa77b..f826ed6 100644
--- 
a/src/main/java/org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java
+++ 
b/src/main/java/org/apache/maven/plugin/docck/AbstractCheckDocumentationMojo.java
@@ -88,8 +88,6 @@ public abstract class AbstractCheckDocumentationMojo
 
 /**
  * Directory where the site source for the project is located.
- *
- * @todo should be determined programmatically
  */
 @Parameter( property = "siteDirectory", defaultValue = "src/site" )
 protected String siteDirectory;


[maven-remote-resources-plugin] branch stabilize created (now 731df1e)

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch stabilize
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git.


  at 731df1e  Fix JavaDoc

This branch includes the following new commits:

 new 731df1e  Fix JavaDoc

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-remote-resources-plugin] 01/01: Fix JavaDoc

2021-10-11 Thread rfscholte
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch stabilize
in repository 
https://gitbox.apache.org/repos/asf/maven-remote-resources-plugin.git

commit 731df1e3ceaa400c7e0875ed5f1ab99bb1e756d4
Author: rfscholte 
AuthorDate: Mon Oct 11 20:16:19 2021 +0200

Fix JavaDoc
---
 .../maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java   | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
 
b/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
index a2d7f72..5f990c6 100644
--- 
a/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
+++ 
b/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
@@ -128,7 +128,6 @@ import 
org.codehaus.plexus.util.xml.pull.XmlPullParserException;
  * Resources that end in ".vm" are treated as Velocity templates. For those, 
the ".vm" is stripped off for the final
  * artifact name and it's fed through Velocity to have properties expanded, 
conditions processed, etc...
  * 
- * 
  * Resources that don't end in ".vm" are copied "as is".
  */
 // NOTE: Removed the following in favor of maven-artifact-resolver library, 
for MRRESOURCES-41
@@ -157,11 +156,10 @@ public class ProcessRemoteResourcesMojo
  * 
  * 
  * delimiters
- *   delimiter${*}/delimiter
- *   delimiter@/delimiter
+ *   delimiter${*}/delimiter
+ *   delimiter@/delimiter
  * /delimiters
  * 
- * 
  * Since the '@' delimiter is the same on both ends, we don't need to 
specify '@*@' (though we can).
  *
  * @since 1.1


[maven-filtering] branch dependabot/maven/org.apache.maven.shared-maven-shared-utils-3.3.4 created (now de742ec)

2021-10-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.apache.maven.shared-maven-shared-utils-3.3.4
in repository https://gitbox.apache.org/repos/asf/maven-filtering.git.


  at de742ec  Bump maven-shared-utils from 3.3.3 to 3.3.4

No new revisions were added by this update.


[maven-filtering] branch dependabot/maven/org.sonatype.plexus-plexus-build-api-tests-0.0.7 created (now c2a4e63)

2021-10-11 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/org.sonatype.plexus-plexus-build-api-tests-0.0.7
in repository https://gitbox.apache.org/repos/asf/maven-filtering.git.


  at c2a4e63  Bump plexus-build-api from 0.0.4 to 0.0.7

No new revisions were added by this update.


[maven] branch MNG-6914_2 updated: [MNG-6914] fix typo

2021-10-11 Thread hboutemy
This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch MNG-6914_2
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/MNG-6914_2 by this push:
 new 25b9e06  [MNG-6914] fix typo
25b9e06 is described below

commit 25b9e06be001dc2bc84b8b63eab3dced8ca73195
Author: Hervé Boutemy 
AuthorDate: Mon Oct 11 19:29:22 2021 +0200

[MNG-6914] fix typo
---
 apache-maven/src/assembly/shared/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apache-maven/src/assembly/shared/run 
b/apache-maven/src/assembly/shared/run
index b35bafc..69535d6 100755
--- a/apache-maven/src/assembly/shared/run
+++ b/apache-maven/src/assembly/shared/run
@@ -16,4 +16,4 @@ exec "$JAVACMD" \
   "-Dmaven.home=$MAVEN_HOME" \
   "-Dlibrary.jansi.path=${MAVEN_HOME}/lib/jansi-native" \
   "-Dmaven.multiModuleProjectDirectory=$MAVEN_PROJECTBASEDIR" \
-  $AUNCHER_CLASS "$@"
+  $LAUNCHER_CLASS "$@"


svn commit: r1894132 - in /maven/doxia/website/content: ./ book/ developers/ doxia-example-book/ issues/ macros/ modules/ references/

2021-10-11 Thread svn-site-role
Author: svn-site-role
Date: Mon Oct 11 12:38:01 2021
New Revision: 1894132

Log:
Site checkin for project Doxia Site

Modified:
maven/doxia/website/content/book/index.html
maven/doxia/website/content/ci-management.html
maven/doxia/website/content/developers/index.html
maven/doxia/website/content/developers/macros.html
maven/doxia/website/content/developers/modules.html
maven/doxia/website/content/developers/sink.html
maven/doxia/website/content/downloads.html
maven/doxia/website/content/doxia-example-book/aegis-binding.html
maven/doxia/website/content/doxia-example-book/bind.html
maven/doxia/website/content/doxia-example-book/bindings.html
maven/doxia/website/content/doxia-example-book/castor.html
maven/doxia/website/content/doxia-example-book/doxia-example-book.pdf
maven/doxia/website/content/doxia-example-book/doxia-example-book.rtf
maven/doxia/website/content/doxia-example-book/http-transport.html
maven/doxia/website/content/doxia-example-book/index.html
maven/doxia/website/content/doxia-example-book/jms-transport.html
maven/doxia/website/content/doxia-example-book/local-transport.html

maven/doxia/website/content/doxia-example-book/transport-and-channel-api.html
maven/doxia/website/content/doxia-example-book/transports.html
maven/doxia/website/content/faq.html
maven/doxia/website/content/index.html
maven/doxia/website/content/issue-management.html
maven/doxia/website/content/issues/index.html
maven/doxia/website/content/macros/index.html
maven/doxia/website/content/macros/swf-macro.html
maven/doxia/website/content/mailing-lists.html
maven/doxia/website/content/modules/index.html
maven/doxia/website/content/overview.html
maven/doxia/website/content/project-info.html
maven/doxia/website/content/references/apt-format.html
maven/doxia/website/content/references/doxia-apt.html
maven/doxia/website/content/references/fml-format.html
maven/doxia/website/content/references/index.html
maven/doxia/website/content/references/xdoc-format.html
maven/doxia/website/content/resources.html
maven/doxia/website/content/scm.html
maven/doxia/website/content/team.html

Modified: maven/doxia/website/content/book/index.html
==
--- maven/doxia/website/content/book/index.html (original)
+++ maven/doxia/website/content/book/index.html Mon Oct 11 12:38:01 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -43,7 +43,7 @@ Vincent Siveton" />
   Maven/
   Doxia/
 Writing Books in Doxia https://github.com/apache/maven-doxia-site/tree/master/content/apt/book/index.apt;>
-| 
Last Published: 2021-10-10
+| 
Last Published: 2021-10-11
   Get 
Sources
   
 

Modified: maven/doxia/website/content/ci-management.html
==
--- maven/doxia/website/content/ci-management.html (original)
+++ maven/doxia/website/content/ci-management.html Mon Oct 11 12:38:01 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -40,7 +40,7 @@
   Maven/
   Doxia/
 CI Management
-| 
Last Published: 2021-10-10
+| 
Last Published: 2021-10-11
   Get 
Sources
   
 

Modified: maven/doxia/website/content/developers/index.html
==
--- maven/doxia/website/content/developers/index.html (original)
+++ maven/doxia/website/content/developers/index.html Mon Oct 11 12:38:01 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@
   Maven/
   Doxia/
 Doxia Developers Centre https://github.com/apache/maven-doxia-site/tree/master/content/apt/developers/index.apt;>
-| 
Last Published: 2021-10-10
+| 
Last Published: 2021-10-11
   Get 
Sources
   
 

Modified: maven/doxia/website/content/developers/macros.html
==
--- maven/doxia/website/content/developers/macros.html (original)
+++ maven/doxia/website/content/developers/macros.html Mon Oct 11 12:38:01 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@
   Maven/
   Doxia/
 Doxia Developers Centre https://github.com/apache/maven-doxia-site/tree/master/content/apt/developers/macros.apt;>
-| 
Last Published: 2021-10-10
+| 
Last Published: 2021-10-11
   Get 
Sources
   
 

Modified: maven/doxia/website/content/developers/modules.html
==
--- maven/doxia/website/content/developers/modules.html (original)
+++ maven/doxia/website/content/developers/modules.html Mon Oct 11 12:38:01 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; 

svn commit: r1894131 [1/4] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ do

2021-10-11 Thread svn-site-role
Author: svn-site-role
Date: Mon Oct 11 12:36:24 2021
New Revision: 1894131

Log:
Site checkin for project Apache Maven Site

Modified:
maven/website/content/about.html
maven/website/content/aether.html
maven/website/content/apache-resource-bundles/index.html
maven/website/content/archives/maven-2.x/index.html
maven/website/content/archives/maven-2.x/maven-2.1-architectural-goals.html
maven/website/content/articles.html
maven/website/content/background/history-of-maven.html
maven/website/content/background/philosophy-of-maven.html
maven/website/content/ci-management.html
maven/website/content/code-quality-management.html
maven/website/content/community.html
maven/website/content/configure.html
maven/website/content/developers/committer-environment.html
maven/website/content/developers/committer-settings.html
maven/website/content/developers/compatibility-plan.html
maven/website/content/developers/conventions/code.html
maven/website/content/developers/conventions/git.html
maven/website/content/developers/conventions/jira.html
maven/website/content/developers/dependency-policies.html
maven/website/content/developers/index.html
maven/website/content/developers/mojo-api-specification.html
maven/website/content/developers/release/index.html
maven/website/content/developers/release/maven-core-release.html

maven/website/content/developers/release/maven-project-release-procedure.html
maven/website/content/developers/release/parent-pom-release.html
maven/website/content/developers/release/pmc-gpg-keys.html
maven/website/content/developers/retirement-plan-plugins.html

maven/website/content/developers/website/component-reference-documentation-helper.html

maven/website/content/developers/website/deploy-component-reference-documentation.html
maven/website/content/developers/website/deploy-maven-website.html
maven/website/content/developers/website/index.html
maven/website/content/developers/website/website-overview.html
maven/website/content/developers/welcome-to-new-committers.html
maven/website/content/docs/2.0.1/release-notes.html
maven/website/content/docs/2.0.10/release-notes.html
maven/website/content/docs/2.0.11/release-notes.html
maven/website/content/docs/2.0.2/release-notes.html
maven/website/content/docs/2.0.3/release-notes.html
maven/website/content/docs/2.0.4/release-notes.html
maven/website/content/docs/2.0.5/release-notes.html
maven/website/content/docs/2.0.6/release-notes.html
maven/website/content/docs/2.0.7/release-notes.html
maven/website/content/docs/2.0.8/release-notes.html
maven/website/content/docs/2.0.9/release-notes.html
maven/website/content/docs/2.0/release-notes.html
maven/website/content/docs/2.1.0/release-notes.html
maven/website/content/docs/2.2.0/release-notes.html
maven/website/content/docs/2.2.1/release-notes.html
maven/website/content/docs/3.0-alpha-3/release-notes.html
maven/website/content/docs/3.0-alpha-4/release-notes.html
maven/website/content/docs/3.0-alpha-5/release-notes.html
maven/website/content/docs/3.0-alpha-6/release-notes.html
maven/website/content/docs/3.0-alpha-7/release-notes.html
maven/website/content/docs/3.0-beta-1/release-notes.html
maven/website/content/docs/3.0-beta-2/release-notes.html
maven/website/content/docs/3.0-beta-3/release-notes.html
maven/website/content/docs/3.0.1/release-notes.html
maven/website/content/docs/3.0.2/release-notes.html
maven/website/content/docs/3.0.3/release-notes.html
maven/website/content/docs/3.0.4/release-notes.html
maven/website/content/docs/3.0.5/release-notes.html
maven/website/content/docs/3.0/release-notes.html
maven/website/content/docs/3.1.0-alpha-1/release-notes.html
maven/website/content/docs/3.1.0/release-notes.html
maven/website/content/docs/3.1.1/release-notes.html
maven/website/content/docs/3.2.1/release-notes.html
maven/website/content/docs/3.2.2/release-notes.html
maven/website/content/docs/3.2.3/release-notes.html
maven/website/content/docs/3.2.5/release-notes.html
maven/website/content/docs/3.3.1/release-notes.html
maven/website/content/docs/3.3.3/release-notes.html
maven/website/content/docs/3.3.9/release-notes.html
maven/website/content/docs/3.5.0-alpha-1/release-notes.html
maven/website/content/docs/3.5.0-beta-1/release-notes.html
maven/website/content/docs/3.5.0/release-notes.html
maven/website/content/docs/3.5.2/release-notes.html
maven/website/content/docs/3.5.3/release-notes.html
maven/website/content/docs/3.5.4/release-notes.html
maven/website/content/docs/3.6.0/release-notes.html
maven/website/content/docs/3.6.1/release-notes.html
maven/website/content/docs/3.6.2/release-notes.html
maven/website/content/docs/3.6.3/release-notes.html

svn commit: r1894131 [2/4] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ do

2021-10-11 Thread svn-site-role
Modified: maven/website/content/docs/2.2.1/release-notes.html
==
--- maven/website/content/docs/2.2.1/release-notes.html (original)
+++ maven/website/content/docs/2.2.1/release-notes.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 2.2.1 https://github.com/apache/maven-site/tree/master/content/apt/docs/2.2.1/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-alpha-3/release-notes.html
==
--- maven/website/content/docs/3.0-alpha-3/release-notes.html (original)
+++ maven/website/content/docs/3.0-alpha-3/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-alpha-3 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-alpha-3/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-alpha-4/release-notes.html
==
--- maven/website/content/docs/3.0-alpha-4/release-notes.html (original)
+++ maven/website/content/docs/3.0-alpha-4/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-alpha-4 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-alpha-4/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-alpha-5/release-notes.html
==
--- maven/website/content/docs/3.0-alpha-5/release-notes.html (original)
+++ maven/website/content/docs/3.0-alpha-5/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-alpha-5 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-alpha-5/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-alpha-6/release-notes.html
==
--- maven/website/content/docs/3.0-alpha-6/release-notes.html (original)
+++ maven/website/content/docs/3.0-alpha-6/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-alpha-6 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-alpha-6/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-alpha-7/release-notes.html
==
--- maven/website/content/docs/3.0-alpha-7/release-notes.html (original)
+++ maven/website/content/docs/3.0-alpha-7/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-alpha-7 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-alpha-7/release-notes.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/docs/3.0-beta-1/release-notes.html
==
--- maven/website/content/docs/3.0-beta-1/release-notes.html (original)
+++ maven/website/content/docs/3.0-beta-1/release-notes.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Release Notes - Maven 3.0-beta-1 https://github.com/apache/maven-site/tree/master/content/apt/docs/3.0-beta-1/release-notes.apt.vm;>

svn commit: r1894131 [4/4] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ do

2021-10-11 Thread svn-site-role
Modified: maven/website/content/guides/mini/guide-wagon-providers.html
==
--- maven/website/content/guides/mini/guide-wagon-providers.html (original)
+++ maven/website/content/guides/mini/guide-wagon-providers.html Mon Oct 11 
12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Selecting Alternative Wagon Providers https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/guide-wagon-providers.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/guides/mini/index.html
==
--- maven/website/content/guides/mini/index.html (original)
+++ maven/website/content/guides/mini/index.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Maven Mini Guides https://github.com/apache/maven-site/tree/master/content/apt/guides/mini/index.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/guides/plugin/guide-java-plugin-development.html
==
--- maven/website/content/guides/plugin/guide-java-plugin-development.html 
(original)
+++ maven/website/content/guides/plugin/guide-java-plugin-development.html Mon 
Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -43,7 +43,7 @@ Olivier Lamy" />
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Developing Java Plugins https://github.com/apache/maven-site/tree/master/content/apt/guides/plugin/guide-java-plugin-development.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: 
maven/website/content/guides/plugin/guide-java-report-plugin-development.html
==
--- 
maven/website/content/guides/plugin/guide-java-report-plugin-development.html 
(original)
+++ 
maven/website/content/guides/plugin/guide-java-report-plugin-development.html 
Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@ Bertrand Martin" />
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Developing Java Report Plugins https://github.com/apache/maven-site/tree/master/content/apt/guides/plugin/guide-java-report-plugin-development.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/ide.html
==
--- maven/website/content/ide.html (original)
+++ maven/website/content/ide.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -39,7 +39,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Apache Maven IDE Integration https://github.com/apache/maven-site/tree/master/content/markdown/ide.md;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/index.html
==
--- maven/website/content/index.html (original)
+++ maven/website/content/index.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Welcome to Apache Maven https://github.com/apache/maven-site/tree/master/content/xdoc/index.xml.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/install.html
==
--- maven/website/content/install.html (original)
+++ maven/website/content/install.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -39,7 +39,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Installing Apache Maven https://github.com/apache/maven-site/tree/master/content/markdown/install.md.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: 

svn commit: r1894131 [3/4] - in /maven/website/content: ./ apache-resource-bundles/ archives/maven-2.x/ background/ developers/ developers/conventions/ developers/release/ developers/website/ docs/ do

2021-10-11 Thread svn-site-role
Modified: 
maven/website/content/guides/development/guide-testing-development-plugins.html
==
--- 
maven/website/content/guides/development/guide-testing-development-plugins.html 
(original)
+++ 
maven/website/content/guides/development/guide-testing-development-plugins.html 
Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Testing Development Versions of Plugins https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-testing-development-plugins.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/guides/development/guide-testing-releases.html
==
--- maven/website/content/guides/development/guide-testing-releases.html 
(original)
+++ maven/website/content/guides/development/guide-testing-releases.html Mon 
Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Guide to Testing Staged Releases https://github.com/apache/maven-site/tree/master/content/apt/guides/development/guide-testing-releases.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/guides/getting-started/index.html
==
--- maven/website/content/guides/getting-started/index.html (original)
+++ maven/website/content/guides/getting-started/index.html Mon Oct 11 12:36:24 
2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@ Vincent Siveton" />
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Maven Getting Started Guide https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/index.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: 
maven/website/content/guides/getting-started/maven-in-five-minutes.html
==
--- maven/website/content/guides/getting-started/maven-in-five-minutes.html 
(original)
+++ maven/website/content/guides/getting-started/maven-in-five-minutes.html Mon 
Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Maven in 5 Minutes https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/maven-in-five-minutes.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: 
maven/website/content/guides/getting-started/windows-prerequisites.html
==
--- maven/website/content/guides/getting-started/windows-prerequisites.html 
(original)
+++ maven/website/content/guides/getting-started/windows-prerequisites.html Mon 
Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -41,7 +41,7 @@
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Maven on Windows https://github.com/apache/maven-site/tree/master/content/apt/guides/getting-started/windows-prerequisites.apt;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: maven/website/content/guides/index.html
==
--- maven/website/content/guides/index.html (original)
+++ maven/website/content/guides/index.html Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ -42,7 +42,7 @@ Eric Redmond" />
   https://www.apache.org/; class="externalLink" 
title="Apache">Apache/
   Maven/
 Maven Documentation https://github.com/apache/maven-site/tree/master/content/apt/guides/index.apt.vm;>
-| 
Last Published: 2021-10-04
+| 
Last Published: 2021-10-11
   |
 Get Sources
   Download

Modified: 
maven/website/content/guides/introduction/introduction-to-archetypes.html
==
--- maven/website/content/guides/introduction/introduction-to-archetypes.html 
(original)
+++ maven/website/content/guides/introduction/introduction-to-archetypes.html 
Mon Oct 11 12:36:24 2021
@@ -1,6 +1,6 @@
 
 
 http://www.w3.org/1999/xhtml; lang="en">
@@ 

[maven-war-plugin] 01/01: Update plugin

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-war-plugin.git

commit bf5a23585c02472a346f8a01373972e91a60
Author: Tamas Cservenak 
AuthorDate: Mon Oct 11 13:46:05 2021 +0200

Update plugin

Move maven to proper scope, update dependencies,
remove unused ones.
---
 pom.xml | 36 ++--
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index 38323c5..189e2fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -62,9 +62,9 @@
   
 
   
-3.5.0
+3.5.1
 3.1.1
-3.1.0
+3.2.5
 7
 
2021-09-05T09:31:59Z
   
@@ -89,16 +89,25 @@
   org.apache.maven
   maven-plugin-api
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-core
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-model
   ${mavenVersion}
+  provided
+
+
+  org.apache.maven
+  maven-artifact
+  ${mavenVersion}
+  provided
 
 
   org.apache.maven
@@ -111,14 +120,9 @@
   provided
 
 
-  org.apache.maven
-  maven-artifact
-  ${mavenVersion}
-
-
   org.apache.maven.shared
   maven-shared-utils
-  3.2.1
+  3.3.4
 
 
 
@@ -129,7 +133,7 @@
 
   org.codehaus.plexus
   plexus-archiver
-  4.2.2
+  4.2.5
 
 
   org.codehaus.plexus
@@ -152,17 +156,13 @@
   3.0.0
 
 
-  org.eclipse.aether
-  aether-api
-  0.9.0.M2
-
-
   org.eclipse.sisu
   org.eclipse.sisu.plexus
-  0.0.0.M2a
+  0.3.5
+  provided
 
 
-
+ 
   org.apache.maven
   maven-compat
   ${mavenVersion}
@@ -171,13 +171,13 @@
 
   junit
   junit
-  4.13.1
+  4.13.2
   test
 
 
   org.apache.maven.plugin-testing
   maven-plugin-testing-harness
-  3.1.0
+  3.3.0
   test
 
   


[maven-war-plugin] branch update-plugin created (now bf5a235)

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a change to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-war-plugin.git.


  at bf5a235  Update plugin

This branch includes the following new commits:

 new bf5a235  Update plugin

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-resources-plugin] branch update-plugin created (now 75bec55)

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a change to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-resources-plugin.git.


  at 75bec55  Update plugin

This branch includes the following new commits:

 new 75bec55  Update plugin

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-resources-plugin] 01/01: Update plugin

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-resources-plugin.git

commit 75bec55724db25d40833f15208046fa26033351e
Author: Tamas Cservenak 
AuthorDate: Mon Oct 11 13:24:37 2021 +0200

Update plugin

Set proper scope and update dependencies, those
that can be, while retaining Java7 level.
---
 pom.xml | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3529957..e8567b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -70,7 +70,7 @@ under the License.
 
   
 3.2.0
-3.1.0
+3.2.5
 7
 
2020-08-05T15:25:21Z
   
@@ -86,16 +86,19 @@ under the License.
   org.apache.maven
   maven-plugin-api
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-core
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-model
   ${mavenVersion}
+  provided
 
 
   org.apache.maven.plugin-tools
@@ -105,6 +108,7 @@ under the License.
 
   org.codehaus.plexus
   plexus-component-annotations
+  provided
 
 
   org.codehaus.plexus
@@ -115,7 +119,8 @@ under the License.
 
   org.eclipse.sisu
   org.eclipse.sisu.plexus
-  0.0.0.M2a
+  0.3.5
+  provided
 
 
   org.apache.maven.shared
@@ -145,25 +150,25 @@ under the License.
 
   org.apache.maven.plugin-testing
   maven-plugin-testing-harness
-  3.1.0
+  3.3.0
   test
 
 
   junit
   junit
-  4.13.1
+  4.13.2
   test
 
 
   org.codehaus.plexus
   plexus-utils
-  3.3.0
+  3.3.0 
   test
 
 
-  org.eclipse.aether
-  aether-api
-  0.9.0.M2
+  org.apache.maven.resolver
+  maven-resolver-api
+  1.6.3
   test
 
 


[maven-jar-plugin] 01/01: Update plugin

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a commit to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-jar-plugin.git

commit 21716f5517eaa0ce4e15e7e1e02a0785df2b089f
Author: Tamas Cservenak 
AuthorDate: Mon Oct 11 13:32:17 2021 +0200

Update plugin

And retain it still Java7. Make mvn core bits
proper scoped.
---
 pom.xml | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index 5f95e5e..aecc86c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,6 @@
 maven-plugins
 org.apache.maven.plugins
 34
-../../pom/maven/maven-plugins/pom.xml
   
 
   maven-jar-plugin
@@ -76,8 +75,8 @@
 
   
 3.0.0
-3.5.0
-3.1.0
+3.5.1
+3.2.5
 7
 
2020-04-07T21:04:00Z
   
@@ -87,16 +86,19 @@
   org.apache.maven
   maven-plugin-api
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-core
   ${mavenVersion}
+  provided
 
 
   org.apache.maven
   maven-artifact
   ${mavenVersion}
+  provided
 
 
   org.apache.maven.shared
@@ -129,12 +131,12 @@
 
   org.apache.maven.shared
   maven-shared-utils
-  3.3.3
+  3.3.4
 
 
   org.codehaus.plexus
   plexus-archiver
-  4.2.3
+  4.2.5
 
 
   org.codehaus.plexus
@@ -144,13 +146,13 @@
 
   junit
   junit
-  4.13
+  4.13.2
   test
 
 
   org.apache.maven.plugin-testing
   maven-plugin-testing-harness
-  3.1.0
+  3.3.0
   test
 
 


[maven-jar-plugin] branch update-plugin created (now 21716f5)

2021-10-11 Thread cstamas
This is an automated email from the ASF dual-hosted git repository.

cstamas pushed a change to branch update-plugin
in repository https://gitbox.apache.org/repos/asf/maven-jar-plugin.git.


  at 21716f5  Update plugin

This branch includes the following new commits:

 new 21716f5  Update plugin

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-remote-resources-plugin] branch master updated: [MRRESOURCES-118] Require Maven 3.2.0 (fix previous commit)

2021-10-11 Thread gnodet
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new d5667e1  [MRRESOURCES-118] Require Maven 3.2.0 (fix previous commit)
d5667e1 is described below

commit d5667e1999568dfc2d83c6056d9a932a73038007
Author: Guillaume Nodet 
AuthorDate: Mon Oct 11 10:33:04 2021 +0200

[MRRESOURCES-118] Require Maven 3.2.0 (fix previous commit)
---
 .../maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
 
b/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
index bc828ef..a2d7f72 100644
--- 
a/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
+++ 
b/src/main/java/org/apache/maven/plugin/resources/remote/ProcessRemoteResourcesMojo.java
@@ -652,7 +652,7 @@ public class ProcessRemoteResourcesMojo
 {
 VersionRange rng = VersionRange.createFromVersion( 
artifact.getBaseVersion() );
 artifact = new DefaultArtifact( artifact.getGroupId(), 
artifact.getArtifactId(), rng,
-artifact.getType(), 
artifact.getClassifier(), artifact.getScope(),
+artifact.getScope(), 
artifact.getType(), artifact.getClassifier(),
 artifact.getArtifactHandler(), 
artifact.isOptional() );
 }
 


[maven-apache-parent] branch master updated: Bump maven-enforcer-plugin to 3.0.0

2021-10-11 Thread slachiewicz
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9e195c8  Bump maven-enforcer-plugin to 3.0.0
9e195c8 is described below

commit 9e195c86baada07b2a1a493ca7eed622d0482b36
Author: Sylwester Lachiewicz 
AuthorDate: Mon Oct 11 00:24:35 2021 +0200

Bump maven-enforcer-plugin to 3.0.0
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7afdff9..b21e6c5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -166,7 +166,7 @@ under the License.
 
   org.apache.maven.plugins
   maven-enforcer-plugin
-  1.4.1
+  3.0.0
 
 
   org.apache.maven.plugins