In my pom.xml I refer to a custom plugin that displays a couple of targets. Although I can attach these goals to the various stages of the build life cycle, I would like to be able to invoke the set of goals defined in the POM using my custom alias phase on the command line, such as:
mvn myphase
Is there any way to do this? I would like to avoid modifying my plugin since I need to run some helper operations that are provided by the antrun plugin.
source share