mirror of https://github.com/apache/maven.git
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:
parent
8f12f77873
commit
e66e2cf2f7
|
@ -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
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue