1 package org.apache.maven.plugin; 2 3 18 19 import org.apache.maven.artifact.resolver.AbstractArtifactResolutionException; 20 import org.apache.maven.artifact.resolver.ArtifactNotFoundException; 21 22 28 public class PluginNotFoundException 29 extends AbstractArtifactResolutionException 30 { 31 public PluginNotFoundException( ArtifactNotFoundException e ) 32 { 33 super( "Plugin could not be found - check that the goal name is correct: " + e.getMessage(), e.getGroupId(), 34 e.getArtifactId(), e.getVersion(), "maven-plugin", e.getRemoteRepositories(), null, e.getCause() ); 35 } 36 } 37 | Popular Tags |