o updated javadoc
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@629081 13f79535-47bb-0310-9956-ffa450edef68master
parent
69b3b9bdac
commit
9aceb543fe
|
|
@ -61,6 +61,7 @@ public class DefaultMojoScanner
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** {@inheritDoc} */
|
||||||
public void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
|
public void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
|
||||||
throws ExtractionException, InvalidPluginDescriptorException
|
throws ExtractionException, InvalidPluginDescriptorException
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -28,11 +28,20 @@ import java.util.Set;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author jdcasey
|
* @author jdcasey
|
||||||
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public interface MojoScanner
|
public interface MojoScanner
|
||||||
{
|
{
|
||||||
|
/** Plexus role for lookup */
|
||||||
String ROLE = MojoScanner.class.getName();
|
String ROLE = MojoScanner.class.getName();
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param project
|
||||||
|
* @param pluginDescriptor
|
||||||
|
* @throws ExtractionException
|
||||||
|
* @throws InvalidPluginDescriptorException
|
||||||
|
*/
|
||||||
void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
|
void populatePluginDescriptor( MavenProject project, PluginDescriptor pluginDescriptor )
|
||||||
throws ExtractionException, InvalidPluginDescriptorException;
|
throws ExtractionException, InvalidPluginDescriptorException;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue