mirror of https://github.com/apache/maven.git
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:
parent
935e3577e6
commit
ea5cd13285
|
@ -2,5 +2,5 @@ package org.apache.maven.it0011;
|
|||
|
||||
public class PersonFinder
|
||||
{
|
||||
org.apache.maven.plugin.Plugin plugin;
|
||||
org.apache.maven.plugin.Mojo mojo;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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" );
|
||||
|
|
Loading…
Reference in New Issue