Package hudson.maven
Class MavenBuildProxy2.Filter<CORE extends MavenBuildProxy2>
java.lang.Object
hudson.maven.MavenBuildProxy.Filter<CORE>
hudson.maven.MavenBuildProxy2.Filter<CORE>
- All Implemented Interfaces:
MavenBuildProxy
,MavenBuildProxy2
,Serializable
- Direct Known Subclasses:
AbstractMavenBuilder.FilterImpl
- Enclosing interface:
- MavenBuildProxy2
public abstract static class MavenBuildProxy2.Filter<CORE extends MavenBuildProxy2>
extends MavenBuildProxy.Filter<CORE>
implements MavenBuildProxy2
Filter for
MavenBuildProxy2
.
Meant to be useful as the base class for other filters.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.maven.MavenBuildProxy.Filter
MavenBuildProxy.Filter.AsyncInvoker
Nested classes/interfaces inherited from interface hudson.maven.MavenBuildProxy
MavenBuildProxy.BuildCallable<V,
T extends Throwable>, MavenBuildProxy.Filter<CORE extends MavenBuildProxy> Nested classes/interfaces inherited from interface hudson.maven.MavenBuildProxy2
MavenBuildProxy2.Filter<CORE extends MavenBuildProxy2>
-
Field Summary
Fields inherited from class hudson.maven.MavenBuildProxy.Filter
core
-
Constructor Summary
-
Method Summary
Methods inherited from class hudson.maven.MavenBuildProxy.Filter
execute, executeAsync, getArtifactsDir, getMavenBuildInformation, getMilliSecsSinceBuildStart, getModuleSetRootDir, getProjectRootDir, getRootDir, getTimestamp, isArchivingDisabled, isSiteArchivingDisabled, queueArchiving, registerAsAggregatedProjectAction, registerAsProjectAction, registerAsProjectAction, setExecutedMojos, setResult
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface hudson.maven.MavenBuildProxy
execute, executeAsync, getArtifactsDir, getMavenBuildInformation, getMilliSecsSinceBuildStart, getModuleSetRootDir, getProjectRootDir, getRootDir, getTimestamp, isArchivingDisabled, isSiteArchivingDisabled, queueArchiving, registerAsAggregatedProjectAction, registerAsProjectAction, registerAsProjectAction, setExecutedMojos, setResult
-
Constructor Details
-
Filter
-
-
Method Details
-
start
public void start()Description copied from interface:MavenBuildProxy2
Notifies that the build has entered a module. Jenkins has a somewhat simplified view of the sequence of events in a Maven build. Namely, a Maven build can be building a particular Maven module, and start and end marks that boundary. Note that Maven can be in a state that it's not building any module, for example when executing an aggregator mojo, and start/end cannot be nested (which right now means a forked lifecycle doesn't result in the event firing.)- Specified by:
start
in interfaceMavenBuildProxy2
-
end
public void end()Description copied from interface:MavenBuildProxy2
Notifies that the build has left a module.- Specified by:
end
in interfaceMavenBuildProxy2
-
appendLastLog
public void appendLastLog()Description copied from interface:MavenBuildProxy2
Maven produces additional error message after the module build is done. So to catch those messages, invoke this method on the last module that was built after all the Maven processing is done, to append last messages to the console output of the module.- Specified by:
appendLastLog
in interfaceMavenBuildProxy2
-