Skip to content

Commit

Permalink
Migrate Maven Plugin to use modern @mojo annotations instead of depre…
Browse files Browse the repository at this point in the history
…cated Javadoc tags (#285) (#286)
  • Loading branch information
jensGiehl authored Dec 18, 2024
1 parent 25baf74 commit 4a2bd47
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;

import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.util.DirectoryScanner;

/**
* Goal which generates a Cucumber Report.
*
* @goal generate
* @phase verify
*/
@Mojo(name = "generate", defaultPhase = LifecyclePhase.VERIFY)
public class CucumberReportGeneratorMojo extends AbstractMojo {

/**
Expand Down

0 comments on commit 4a2bd47

Please sign in to comment.