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/15 16:22:31 UTC

[maven-integration-testing] branch master updated: Replace o.codehaus.doxia.sink.Sink with o.a.m.doxia.sink.Sink

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-integration-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new a0fba738a Replace o.codehaus.doxia.sink.Sink with o.a.m.doxia.sink.Sink
a0fba738a is described below

commit a0fba738ad4829e3e13abc8f71c82af77bda74d5
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Apr 15 18:22:03 2022 +0200

    Replace o.codehaus.doxia.sink.Sink with o.a.m.doxia.sink.Sink
---
 core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml          | 4 ++--
 .../src/main/java/org/apache/maven/plugin/coreit/GenerateMojo.java    | 2 +-
 .../src/main/java/org/apache/maven/plugin/coreit/InfoReport.java      | 3 +--
 3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml b/core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml
index 585a3a212..aa9cfc396 100644
--- a/core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml
+++ b/core-it-support/core-it-plugins/maven-it-plugin-site/pom.xml
@@ -50,7 +50,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>2.0</version>
+      <version>3.1.0</version>
       <exclusions>
         <exclusion>
           <groupId>doxia</groupId>
@@ -66,7 +66,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-exec</artifactId>
-      <version>1.1</version>
+      <version>1.6.0</version>
     </dependency>
   </dependencies>
 </project>
diff --git a/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/GenerateMojo.java b/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/GenerateMojo.java
index 2fa822b23..39c299695 100644
--- a/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/GenerateMojo.java
+++ b/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/GenerateMojo.java
@@ -19,11 +19,11 @@ package org.apache.maven.plugin.coreit;
  * under the License.
  */
 
+import org.apache.maven.doxia.sink.Sink;
 import org.apache.maven.plugin.AbstractMojo;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugin.MojoFailureException;
 import org.apache.maven.reporting.MavenReport;
-import org.codehaus.doxia.sink.Sink;
 
 import java.io.File;
 import java.lang.reflect.InvocationHandler;
diff --git a/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java b/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
index 4d28b60b5..fce5b9fea 100644
--- a/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
+++ b/core-it-support/core-it-plugins/maven-it-plugin-site/src/main/java/org/apache/maven/plugin/coreit/InfoReport.java
@@ -19,14 +19,13 @@ package org.apache.maven.plugin.coreit;
  * under the License.
  */
 
+import org.apache.maven.doxia.sink.Sink;
 import org.apache.maven.plugin.AbstractMojo;
 import org.apache.maven.plugin.MojoExecutionException;
 import org.apache.maven.plugin.MojoFailureException;
 import org.apache.maven.reporting.MavenReport;
 import org.apache.maven.reporting.MavenReportException;
 
-import org.codehaus.doxia.sink.Sink;
-
 import java.io.File;
 import java.io.FileOutputStream;
 import java.io.IOException;