You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/04/17 21:08:19 UTC

[maven-reporting-exec] branch master updated (5d2227c -> 8afac17)

This is an automated email from the ASF dual-hosted git repository.

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


    from 5d2227c  [maven-release-plugin] prepare for next development iteration
     new ecde741  Update CI URL
     new cc93a42  Drop $Id$
     new 872aeee  Drop obsolete Maven Central mirror
     new 73161f3  Drop unused logger
     new 8afac17  Improve site.xml

The 5 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.


Summary of changes:
 pom.xml                                                             | 2 +-
 .../maven/reporting/exec/DefaultMavenPluginManagerHelper.java       | 4 ----
 .../org/apache/maven/reporting/exec/MavenReportExecutorRequest.java | 5 ++---
 src/site/site.xml                                                   | 2 +-
 .../apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java | 6 ------
 5 files changed, 4 insertions(+), 15 deletions(-)


[maven-reporting-exec] 03/05: Drop obsolete Maven Central mirror

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 872aeeebf752b21778cf55e66317df40cab139d2
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 23:03:45 2022 +0200

    Drop obsolete Maven Central mirror
---
 .../apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/test/java/org/apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java b/src/test/java/org/apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java
index e5381e7..1be5f53 100644
--- a/src/test/java/org/apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java
+++ b/src/test/java/org/apache/maven/reporting/exec/TestDefaultMavenReportExecutor.java
@@ -219,12 +219,6 @@ public class TestDefaultMavenReportExecutor
         } );
         final Settings settings = getSettings();
 
-        Mirror centralMirror = new Mirror();
-        centralMirror.setId("httpsCentral");
-        centralMirror.setMirrorOf( "central" );
-        centralMirror.setUrl( "https://repo.maven.apache.org/maven2" );
-        request.setMirrors( Collections.singletonList( centralMirror ) );
-
         getContainer().lookup( MavenExecutionRequestPopulator.class ).populateFromSettings( request, settings );
 
         getContainer().lookup( MavenExecutionRequestPopulator.class ).populateDefaults( request );


[maven-reporting-exec] 05/05: Improve site.xml

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8afac172d2e79c57ebbb1d0f625ec195894ecf05
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 23:04:53 2022 +0200

    Improve site.xml
---
 src/site/site.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/site.xml b/src/site/site.xml
index 699f845..f30aab5 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -25,7 +25,7 @@ under the License.
   <body>
     <menu name="Overview">
       <item name="Introduction" href="index.html"/>
-      <item name="JavaDocs" href="apidocs/index.html"/>
+      <item name="Javadoc" href="apidocs/index.html"/>
       <item name="Source Xref" href="xref/index.html"/>
       <!--item name="FAQ" href="faq.html"/-->
       <!-- According to https://issues.apache.org/jira/browse/MNGSITE-152 -->


[maven-reporting-exec] 04/05: Drop unused logger

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 73161f3a0aca05e6020b1957f0ee4871c5e3384e
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 23:04:19 2022 +0200

    Drop unused logger
---
 .../apache/maven/reporting/exec/DefaultMavenPluginManagerHelper.java  | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/main/java/org/apache/maven/reporting/exec/DefaultMavenPluginManagerHelper.java b/src/main/java/org/apache/maven/reporting/exec/DefaultMavenPluginManagerHelper.java
index e1c6ecc..e24ae3b 100644
--- a/src/main/java/org/apache/maven/reporting/exec/DefaultMavenPluginManagerHelper.java
+++ b/src/main/java/org/apache/maven/reporting/exec/DefaultMavenPluginManagerHelper.java
@@ -31,7 +31,6 @@ import org.apache.maven.plugin.PluginResolutionException;
 import org.apache.maven.plugin.descriptor.PluginDescriptor;
 import org.codehaus.plexus.component.annotations.Component;
 import org.codehaus.plexus.component.annotations.Requirement;
-import org.codehaus.plexus.logging.Logger;
 import org.eclipse.aether.RepositorySystemSession;
 import org.eclipse.aether.graph.DependencyFilter;
 import org.eclipse.aether.repository.RemoteRepository;
@@ -44,9 +43,6 @@ import org.eclipse.aether.util.filter.ExclusionsDependencyFilter;
 public class DefaultMavenPluginManagerHelper
     implements MavenPluginManagerHelper
 {
-    @Requirement
-    private Logger logger;
-
     @Requirement
     protected MavenPluginManager mavenPluginManager;
 


[maven-reporting-exec] 02/05: Drop $Id$

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit cc93a42ba9dc8fc55095e182d12307e1a7ff1280
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 23:01:50 2022 +0200

    Drop $Id$
---
 .../org/apache/maven/reporting/exec/MavenReportExecutorRequest.java  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/maven/reporting/exec/MavenReportExecutorRequest.java b/src/main/java/org/apache/maven/reporting/exec/MavenReportExecutorRequest.java
index 6b595ce..7c9199c 100644
--- a/src/main/java/org/apache/maven/reporting/exec/MavenReportExecutorRequest.java
+++ b/src/main/java/org/apache/maven/reporting/exec/MavenReportExecutorRequest.java
@@ -29,11 +29,10 @@ import org.codehaus.plexus.configuration.xml.XmlPlexusConfiguration;
 import org.codehaus.plexus.util.xml.Xpp3Dom;
 
 /**
- * Bean which contains necessary informations to build {@link MavenReportExecution} with {@link MavenReportExecutor}: 
+ * Bean which contains necessary informations to build {@link MavenReportExecution} with {@link MavenReportExecutor}:
  * the intent is to store some informations regarding the current Maven execution.
- * 
+ *
  * @author Olivier Lamy
- * @version $Id$
  */
 public class MavenReportExecutorRequest
 {


[maven-reporting-exec] 01/05: Update CI URL

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit ecde741398933f2c910df602321689d58e1aac07
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Apr 17 22:51:21 2022 +0200

    Update CI URL
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 99c6df4..f3916b3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,7 +46,7 @@
   </issueManagement>
   <ciManagement>
     <system>Jenkins</system>
-    <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-reporting-exec/</url>
+    <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-reporting-exec/</url>
   </ciManagement>
   <distributionManagement>
     <site>