Skip to content

Commit

Permalink
Upgrade maven-reporting-impl from 3.1.0 to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Oct 3, 2024
1 parent 12c1d60 commit e633009
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-impl</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
Expand Down
6 changes: 3 additions & 3 deletions src/it/setup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
Licensed 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.
Expand Down Expand Up @@ -111,7 +111,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
<version>3.12.1</version>
<executions>
<execution>
<id>attach-descriptor</id>
Expand Down
12 changes: 1 addition & 11 deletions src/main/java/org/codehaus/mojo/jdepend/AbstractJDependMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import jdepend.xmlui.JDepend;
import org.apache.maven.doxia.sink.Sink;
import org.apache.maven.doxia.siterenderer.Renderer;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.apache.maven.reporting.AbstractMavenReport;
Expand All @@ -41,14 +40,11 @@
public abstract class AbstractJDependMojo extends AbstractMavenReport {
JDependXMLReportParser xmlParser;

@Parameter(defaultValue = "${project}", readonly = true, required = true)
private MavenProject project;

/**
* Directory where the generated output site files will be located.
*/
@Parameter(defaultValue = "${project.build.directory}/site", property = "jdepend.outputDirectory", required = true)
private String outputDirectory;
protected String outputDirectory;

/**
* Directory of the project.
Expand All @@ -74,12 +70,6 @@ public abstract class AbstractJDependMojo extends AbstractMavenReport {
@Parameter(defaultValue = "false", property = "jdepend.skip")
private boolean skip;

/**
* Doxia Site Renderer
*/
@Component
private Renderer siteRenderer;

/*
* (non-Javadoc)
* @see org.apache.maven.reporting.AbstractMavenReport#executeReport(java.util.Locale)
Expand Down

0 comments on commit e633009

Please sign in to comment.