Skip to content

Commit

Permalink
Maven 3.9.2 should not produce warnings for jacoco-maven-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed May 25, 2023
1 parent 6fb8786 commit ef6fb48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jacoco-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>file-management</artifactId>
<version>1.2.1</version>
<version>3.1.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jacoco-maven-plugin/src/org/jacoco/maven/MergeMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void executeMerge() throws MojoExecutionException {

private void load(final ExecFileLoader loader)
throws MojoExecutionException {
final FileSetManager fileSetManager = new FileSetManager(getLog());
final FileSetManager fileSetManager = new FileSetManager();
for (final FileSet fileSet : fileSets) {
for (final String includedFilename : fileSetManager
.getIncludedFiles(fileSet)) {
Expand Down
5 changes: 4 additions & 1 deletion org.jacoco.doc/docroot/doc/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ <h2>Snapshot Build @qualified.bundle.version@ (@build.date@)</h2>

<h3>New Features</h3>
<ul>
<li>Maven 3.9.2 should not produce warnings for jacoco-maven-plugin
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1468">#1468</a>).</li>
<li>jacoco-maven-plugin now requires at least Java 8
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1466">#1466</a>).</li>
(GitHub <a href="https://github.com/jacoco/jacoco/issues/1466">#1466</a>,
<a href="https://github.com/jacoco/jacoco/issues/1468">#1468</a>).</li>
</ul>

<h3>Fixed bugs</h3>
Expand Down

0 comments on commit ef6fb48

Please sign in to comment.