Skip to content

Commit

Permalink
Prepare for Doxia 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Apr 29, 2023
1 parent 9c3e913 commit 3ae28ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
16 changes: 5 additions & 11 deletions pom.xml
Expand Up @@ -28,7 +28,7 @@ under the License.
</parent>

<artifactId>maven-invoker-plugin</artifactId>
<version>3.5.2-SNAPSHOT</version>
<version>3.6.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>Apache Maven Invoker Plugin</name>
Expand Down Expand Up @@ -150,25 +150,19 @@ under the License.
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId>
<version>3.1.1</version>
<version>4.0.0-M6</version>
</dependency>
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>3.2.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
</exclusion>
</exclusions>
<version>4.0.0-M8</version>
</dependency>

<!-- doxia -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>1.12.0</version>
<version>2.0.0-M6</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -381,7 +375,7 @@ under the License.
<jarPluginVersion>3.3.0</jarPluginVersion>
<pluginPluginVersion>3.8.1</pluginPluginVersion>
<resourcesPluginVersion>3.3.1</resourcesPluginVersion>
<sitePluginVersion>3.12.1</sitePluginVersion>
<sitePluginVersion>4.0.0-M8</sitePluginVersion>
<sourcePluginVersion>3.2.1</sourcePluginVersion>
<surefirePluginVersion>3.0.0</surefirePluginVersion>
</properties>
Expand Down
Expand Up @@ -150,7 +150,7 @@ protected void executeReport(Locale locale) throws MavenReportException {

// detail tests table header
sink.table();
sink.tableRows(null, false);
sink.tableRows();

sink.tableRow();
// -------------------------------------------
Expand Down Expand Up @@ -193,7 +193,7 @@ private void constructSummarySection(List<? extends BuildJob> buildJobs, Locale
// ------------------------------------------------------------------------

sink.table();
sink.tableRows(null, false);
sink.tableRows();

sink.tableRow();

Expand Down

0 comments on commit 3ae28ce

Please sign in to comment.