o updated javadoc

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@629081 13f79535-47bb-0310-9956-ffa450edef68
master
Vincent Siveton 2008-02-19 11:58:28 +00:00
parent 69b3b9bdac
commit 9aceb543fe
2 changed files with 10 additions and 0 deletions

View File

@ -61,6 +61,7 @@ public class DefaultMojoScanner
{
}
/** {@inheritDoc} */
public void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
throws ExtractionException, InvalidPluginDescriptorException
{

View File

@ -28,11 +28,20 @@ import java.util.Set;
/**
* @author jdcasey
* @version $Id$
*/
public interface MojoScanner
{
/** Plexus role for lookup */
String ROLE = MojoScanner.class.getName();
/**
*
* @param project
* @param pluginDescriptor
* @throws ExtractionException
* @throws InvalidPluginDescriptorException
*/
void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
throws ExtractionException, InvalidPluginDescriptorException;