1 package com.atlassian.maven.plugins.amps;
2
3 import org.apache.maven.plugin.MojoExecutionException;
4 import org.apache.maven.plugin.MojoFailureException;
5 import org.jfrog.maven.annomojo.annotations.MojoGoal;
6
7 @MojoGoal("filter-plugin-descriptor")
8 public class FilterPluginDescriptorMojo extends AbstractAmpsMojo
9 {
10 public void execute() throws MojoExecutionException, MojoFailureException
11 {
12 getMavenGoals().filterPluginDescriptor();
13 }
14 }