Fixing IT's broken by Plugin->Mojo rename

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@165246 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2005-04-29 01:06:58 +00:00
parent 935e3577e6
commit ea5cd13285
3 changed files with 7 additions and 7 deletions

View File

@ -2,5 +2,5 @@ package org.apache.maven.it0011;
public class PersonFinder
{
org.apache.maven.plugin.Plugin plugin;
org.apache.maven.plugin.Mojo mojo;
}

View File

@ -2,5 +2,5 @@ package org.apache.maven.it0012;
public class PersonFinder
{
private org.apache.maven.plugin.Plugin plugin;
private org.apache.maven.plugin.Mojo mojo;
}

View File

@ -16,9 +16,9 @@ package org.apache.maven.plugin.coreit;
* limitations under the License.
*/
import org.apache.maven.plugin.AbstractPlugin;
import org.apache.maven.plugin.PluginExecutionRequest;
import org.apache.maven.plugin.PluginExecutionResponse;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionRequest;
import org.apache.maven.plugin.MojoExecutionResponse;
import java.io.File;
import java.io.FileWriter;
@ -37,11 +37,11 @@ import java.io.FileWriter;
* description=""
*/
public class CoreIt0013Mojo
extends AbstractPlugin
extends AbstractMojo
{
private static final int DELETE_RETRY_SLEEP_MILLIS = 10;
public void execute( PluginExecutionRequest request, PluginExecutionResponse response )
public void execute( MojoExecutionRequest request, MojoExecutionResponse response )
throws Exception
{
String outputDirectory = (String) request.getParameter( "outputDirectory" );