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 18:57:27 UTC

[maven-reporting-impl] branch doxia-2.0.0 updated (26f9664 -> 9c995fb)

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

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


    from 26f9664  Prepare for Doxia 2.0.0
     add b39d162  Revert "Prepare for Doxia 2.0.0"
     add 6554ad3  Remove old Maven 2 profile
     add b3b09af  [MSHARED-1027] Update Doxia to 1.11.1 and Doxia Sitetools to 1.11.1
     add 6b01959  [MSHARED-1028] Upgrade Maven Reporting API to 3.1.0
     add ddaac14  Update plugins in 'use-as-site-report' IT
     add 7f2f24f  [maven-release-plugin] prepare release maven-reporting-impl-3.1.0
     add bbddd4d  [maven-release-plugin] prepare for next development iteration
     new 9c995fb  Bump

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:
 pom.xml                                            | 19 +++++-------
 src/it/setup-reporting-plugin/pom.xml              | 34 +---------------------
 src/it/use-as-site-report/pom.xml                  |  2 +-
 .../maven/reporting/AbstractMavenReport.java       | 17 ++++++++++-
 .../main/java/org/codehaus/doxia/sink/Sink.java    | 15 ++++++++--
 5 files changed, 38 insertions(+), 49 deletions(-)
 copy Jenkinsfile => src/main/java/org/codehaus/doxia/sink/Sink.java (75%)


[maven-reporting-impl] 01/01: Bump

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

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

commit 9c995fb8797d3e780d6555ca4e3f3aede8594c1e
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Apr 15 20:57:19 2022 +0200

    Bump
---
 pom.xml                                         | 10 ++++----
 src/main/java/org/codehaus/doxia/sink/Sink.java | 31 +++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3dd1da3..8faea8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.maven.reporting</groupId>
   <artifactId>maven-reporting-impl</artifactId>
-  <version>3.1.1-SNAPSHOT</version>
+  <version>4.0.0-SNAPSHOT</version>
 
   <name>Apache Maven Reporting Implementation</name>
   <description>Abstract classes to manage report generation.</description>
@@ -69,9 +69,9 @@
 
   <properties>
     <mavenVersion>3.1.0</mavenVersion>
-    <doxiaVersion>1.11.1</doxiaVersion>
-    <doxiaSitetoolsVersion>1.11.1</doxiaSitetoolsVersion>
-    <javaVersion>7</javaVersion>
+    <doxiaVersion>2.0.0-M2</doxiaVersion>
+    <doxiaSitetoolsVersion>2.0.0-M2</doxiaSitetoolsVersion>
+    <javaVersion>8</javaVersion>
     <project.build.outputTimestamp>2022-02-05T21:36:19Z</project.build.outputTimestamp>
   </properties>
 
@@ -79,7 +79,7 @@
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
       <artifactId>maven-reporting-api</artifactId>
-      <version>3.1.0</version>
+      <version>4.0.0-SNAPSHOT</version>
     </dependency>
 
     <!-- Maven -->
diff --git a/src/main/java/org/codehaus/doxia/sink/Sink.java b/src/main/java/org/codehaus/doxia/sink/Sink.java
new file mode 100644
index 0000000..0fe64cf
--- /dev/null
+++ b/src/main/java/org/codehaus/doxia/sink/Sink.java
@@ -0,0 +1,31 @@
+package org.codehaus.doxia.sink;
+
+/*
+ * 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.
+ */
+
+/**
+ * Generic document processing interface.
+ *
+ * @deprecated use {@link org.apache.maven.doxia.sink.Sink} instead (since 1.0-alpha-6).
+ */
+public interface Sink
+    extends org.apache.maven.doxia.sink.Sink
+{
+    // nop
+}