I'm trying to add the following plugin to my build but the goal prefix is license which conflicts with maven-license-plugin used in my parent pom. I can't change the parent so how do I handle multiple plugins that both have a goal prefix of license? Note in my pom I want to run some license goals from the command line and also bind other goals to phases. It's the command line goals I'm currently having trouble with.
How can I run the goal with the fully qualified plugin name or is there another way to do this? <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> -Dave
