Skip to content

Commit

Permalink
fixing build warnings : using annotation rather than javadoc to confi…
Browse files Browse the repository at this point in the history
…gure the plugin
  • Loading branch information
vincent-fuchs committed Nov 26, 2023
1 parent ecd4dbd commit 89c2de1
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.apache.maven.artifact.DependencyResolutionRequiredException;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
Expand All @@ -25,13 +26,10 @@
import static java.net.URLClassLoader.newInstance;
import static java.util.Collections.emptyList;

/**
* @goal generate
* @phase process-classes
* @configurator include-project-dependencies
* @requiresDependencyResolution compile+runtime
*/
@Mojo(name = "arch-test", requiresDependencyResolution = ResolutionScope.TEST)
@Mojo(name = "arch-test",
requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME,
defaultPhase = LifecyclePhase.PROCESS_CLASSES,
configurator = "include-project-dependencies")
public class ArchUnitMojo extends AbstractMojo {
/**
* Skips all processing performed by this plugin.
Expand Down

0 comments on commit 89c2de1

Please sign in to comment.