Interface ExecuteContext
-
public interface ExecuteContext
Provides context forExecuteTask
s.- Since:
- 0.7
- Author:
- Jason Dillon
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default File
basedir()
Deprecated.UsegetBasedir()
insteaddefault File
getBasedir()
Returns the project base directory.org.apache.maven.plugin.logging.Log
getLog()
Returns the log.org.apache.maven.project.MavenProject
getProject()
Returns the maven project.org.apache.maven.execution.MavenSession
getSession()
Returns the maven session.default org.apache.maven.plugin.logging.Log
log()
Deprecated.UsegetLog()
instead
-
-
-
Method Detail
-
getProject
org.apache.maven.project.MavenProject getProject()
Returns the maven project.
-
getSession
org.apache.maven.execution.MavenSession getSession()
Returns the maven session.
-
basedir
@Deprecated default File basedir()
Deprecated.UsegetBasedir()
insteadReturns the project base directory.
-
getBasedir
default File getBasedir()
Returns the project base directory.
-
log
@Deprecated default org.apache.maven.plugin.logging.Log log()
Deprecated.UsegetLog()
insteadReturns the logger.
-
getLog
org.apache.maven.plugin.logging.Log getLog()
Returns the log.
-
-