1 package org.apache.maven.plugin.descriptor; 2 3 18 19 public class DuplicateMojoDescriptorException 20 extends InvalidPluginDescriptorException 21 { 22 23 public DuplicateMojoDescriptorException( String goalPrefix, String goal, String existingImplementation, String newImplementation ) 24 { 25 super( "Goal: " + goal + " already exists in the plugin descriptor for prefix: " + goalPrefix + "\nExisting implementation is: " + existingImplementation + "\nConflicting implementation is: " + newImplementation ); 26 } 27 28 } 29 | Popular Tags |