o Refactored code

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@814350 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-09-13 17:29:26 +00:00
parent 8f12f77873
commit e66e2cf2f7
3 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,5 @@
package org.apache.maven.lifecycle;
package org.apache.maven.execution;
import org.apache.maven.execution.ExecutionEvent;
import org.apache.maven.execution.ExecutionListener;
/*
* Licensed to the Apache Software Foundation (ASF) under one

View File

@ -1,6 +1,5 @@
package org.apache.maven.execution;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
@ -21,7 +20,9 @@ package org.apache.maven.execution;
*/
/**
* Defines events that Maven fires during a build.
* Defines events that Maven fires during a build. <strong>Warning:</strong> This interface might be extended in future
* Maven versions to support further events. Hence it is strongly recommended to derive custom listeners from
* {@link AbstractExecutionListener} in order to avoid interoperability problems.
*
* @author Benjamin Bentmann
*/

View File

@ -25,13 +25,13 @@ import java.util.Date;
import java.util.TimeZone;
import org.apache.maven.embedder.MavenEmbedderLogger;
import org.apache.maven.execution.AbstractExecutionListener;
import org.apache.maven.execution.BuildFailure;
import org.apache.maven.execution.BuildSuccess;
import org.apache.maven.execution.BuildSummary;
import org.apache.maven.execution.ExecutionEvent;
import org.apache.maven.execution.MavenExecutionResult;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.lifecycle.AbstractExecutionListener;
import org.apache.maven.plugin.MojoExecution;
import org.apache.maven.project.MavenProject;