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

[maven-reporting-api] branch MSHARED-844 updated (3c532ca -> d4f2b56)

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

slachiewicz pushed a change to branch MSHARED-844
in repository https://gitbox.apache.org/repos/asf/maven-reporting-api.git.


 discard 3c532ca  [MSHARED-844] Upgrade to Doxia 1.9
 discard 8bed7bb  Updated link to Jira
     add 599ea8f  [MSHARED-879] make build Reproducible
     add 1fe58a8  update deps (#1)
     add 38e0184  added README and GitHub configuration
     add 365cf78  added README and GitHub configuration
     add 9669cc1  README improvement
     add 3733fdc  Updated link to Jira
     new d4f2b56  [MSHARED-844] Upgrade to Doxia 1.9.1

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3c532ca)
            \
             N -- N -- N   refs/heads/MSHARED-844 (d4f2b56)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .asf.yaml | 25 ++++++++++++++++
 README.md | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 pom.xml   |  5 ++--
 3 files changed, 127 insertions(+), 2 deletions(-)
 create mode 100644 .asf.yaml
 create mode 100644 README.md


[maven-reporting-api] 01/01: [MSHARED-844] Upgrade to Doxia 1.9.1

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

slachiewicz pushed a commit to branch MSHARED-844
in repository https://gitbox.apache.org/repos/asf/maven-reporting-api.git

commit d4f2b563711e808c99c6669b92448423689bb07a
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Mon Dec 2 00:06:53 2019 +0100

    [MSHARED-844] Upgrade to Doxia 1.9.1
---
 src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java | 2 +-
 src/main/java/org/apache/maven/reporting/MavenReport.java          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java b/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
index 0a4db97..6364eba 100644
--- a/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
+++ b/src/main/java/org/apache/maven/reporting/MavenMultiPageReport.java
@@ -30,7 +30,7 @@ import java.util.Locale;
  * method dropped. But that would have rendered all reporting mojo's uncompilable and binary incompatible.
  *
  * @author <a href="mailto:kenney@apache.org">Kenney Westerhof</a>
- * @see MavenReport#generate(org.codehaus.doxia.sink.Sink, Locale)
+ * @see MavenReport#generate(org.apache.maven.doxia.sink.Sink, Locale)
  * @since 3.0 (copied in maven-site-plugin 2.0-beta-6)
  */
 public interface MavenMultiPageReport
diff --git a/src/main/java/org/apache/maven/reporting/MavenReport.java b/src/main/java/org/apache/maven/reporting/MavenReport.java
index 72bea3c..1f0bfcd 100644
--- a/src/main/java/org/apache/maven/reporting/MavenReport.java
+++ b/src/main/java/org/apache/maven/reporting/MavenReport.java
@@ -19,7 +19,7 @@ package org.apache.maven.reporting;
  * under the License.
  */
 
-import org.codehaus.doxia.sink.Sink;
+import org.apache.maven.doxia.sink.Sink;
 
 import java.io.File;
 import java.util.Locale;