diff --git a/maven-plugin/src/main/java/eu/maveniverse/maven/toolbox/plugin/gav/GavMojoSupport.java b/maven-plugin/src/main/java/eu/maveniverse/maven/toolbox/plugin/gav/GavMojoSupport.java index f01ec3e0..2c5a1597 100644 --- a/maven-plugin/src/main/java/eu/maveniverse/maven/toolbox/plugin/gav/GavMojoSupport.java +++ b/maven-plugin/src/main/java/eu/maveniverse/maven/toolbox/plugin/gav/GavMojoSupport.java @@ -17,7 +17,6 @@ import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; -import org.apache.maven.plugins.annotations.Parameter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -25,9 +24,6 @@ public abstract class GavMojoSupport extends AbstractMojo { protected final Logger logger = LoggerFactory.getLogger(getClass()); protected final Output output = new Slf4jOutput(logger); - @Parameter(property = "verbose", defaultValue = "false", required = true) - protected boolean verbose; - @Override public final void execute() throws MojoExecutionException, MojoFailureException { Runtime runtime = Runtimes.INSTANCE.getRuntime();