Uses of Class
org.apache.maven.plugins.invoker.model.BuildJob
-
Packages that use BuildJob Package Description org.apache.maven.plugins.invoker org.apache.maven.plugins.invoker.model.io.xpp3 -
-
Uses of BuildJob in org.apache.maven.plugins.invoker
Fields in org.apache.maven.plugins.invoker with type parameters of type BuildJob Modifier and Type Field Description private java.util.List<BuildJob>
InvokerSession. buildJobs
private java.util.List<BuildJob>
InvokerSession. errorJobs
private java.util.List<BuildJob>
InvokerSession. failedJobs
private java.util.List<BuildJob>
InvokerSession. skippedJobs
private java.util.List<BuildJob>
InvokerSession. successfulJobs
Methods in org.apache.maven.plugins.invoker that return types with arguments of type BuildJob Modifier and Type Method Description (package private) java.util.List<BuildJob>
AbstractInvokerMojo. getBuildJobs()
Gets the build jobs that should be processed.java.util.List<BuildJob>
InvokerSession. getErrorJobs()
Gets the build jobs which had errors for this session.java.util.List<BuildJob>
InvokerSession. getFailedJobs()
Gets the failed build jobs in this session.java.util.List<BuildJob>
InvokerSession. getJobs()
Gets the build jobs in this session.private java.util.List<BuildJob>
AbstractInvokerMojo. getNonSetupJobs(java.util.List<BuildJob> buildJobs)
private java.util.List<BuildJob>
AbstractInvokerMojo. getSetupBuildJobsFromFolders()
java.util.List<BuildJob>
InvokerSession. getSkippedJobs()
Gets the skipped build jobs in this session.java.util.List<BuildJob>
InvokerSession. getSuccessfulJobs()
Gets the successful build jobs in this session.private java.util.List<BuildJob>
AbstractInvokerMojo. scanProjectsDirectory(java.util.List<java.lang.String> includes, java.util.List<java.lang.String> excludes, java.lang.String type)
Scans the projects directory for projects to build.Methods in org.apache.maven.plugins.invoker with parameters of type BuildJob Modifier and Type Method Description void
InvokerSession. addJob(BuildJob buildJob)
Adds the specified build job to this session.private org.apache.maven.shared.utils.logging.MessageBuilder
AbstractInvokerMojo. pad(BuildJob buildJob)
private void
InvokerReport. renderBuildJob(BuildJob buildJob, java.util.Locale locale)
private void
AbstractInvokerMojo. runBuild(java.io.File projectsDir, BuildJob buildJob, java.io.File settingsFile, java.io.File actualJavaHome, java.lang.CharSequence actualJreVersion, java.util.Properties globalInvokerProperties)
Runs the specified project.private void
AbstractInvokerMojo. writeBuildReport(BuildJob buildJob, AbstractInvokerMojo.ExecutionResult executionResult)
Writes the XML report for the specified build job unless report generation has been disabled.private void
AbstractInvokerMojo. writeJunitReport(BuildJob buildJob, java.lang.String safeFileName, AbstractInvokerMojo.ExecutionResult executionResult)
Method parameters in org.apache.maven.plugins.invoker with type arguments of type BuildJob Modifier and Type Method Description private void
InvokerReport. constructSummarySection(java.util.List<? extends BuildJob> buildJobs, java.util.Locale locale)
private java.util.List<BuildJob>
AbstractInvokerMojo. getNonSetupJobs(java.util.List<BuildJob> buildJobs)
private void
AbstractInvokerMojo. relativizeProjectPaths(java.util.List<BuildJob> buildJobs)
Relativizes the project paths of the specified build jobs against the directory specified byAbstractInvokerMojo.projectsDirectory
(if possible).private void
AbstractInvokerMojo. runBuilds(java.io.File projectsDir, java.util.List<BuildJob> buildJobs, int runWithParallelThreads)
Runs the specified build jobs.void
InvokerSession. setJobs(java.util.List<? extends BuildJob> buildJobs)
Sets the build jobs of this session.private void
AbstractInvokerMojo. writeSummaryFile(java.util.List<BuildJob> buildJobs)
Constructor parameters in org.apache.maven.plugins.invoker with type arguments of type BuildJob Constructor Description InvokerSession(java.util.List<BuildJob> buildJobs)
Creates a session that initially contains the specified build jobs. -
Uses of BuildJob in org.apache.maven.plugins.invoker.model.io.xpp3
Methods in org.apache.maven.plugins.invoker.model.io.xpp3 that return BuildJob Modifier and Type Method Description private BuildJob
BuildJobXpp3Reader. parseBuildJob(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method parseBuildJob.BuildJob
BuildJobXpp3Reader. read(java.io.InputStream in)
Method read.BuildJob
BuildJobXpp3Reader. read(java.io.InputStream in, boolean strict)
Method read.BuildJob
BuildJobXpp3Reader. read(java.io.Reader reader)
BuildJob
BuildJobXpp3Reader. read(java.io.Reader reader, boolean strict)
private BuildJob
BuildJobXpp3Reader. read(org.codehaus.plexus.util.xml.pull.XmlPullParser parser, boolean strict)
Method read.Methods in org.apache.maven.plugins.invoker.model.io.xpp3 with parameters of type BuildJob Modifier and Type Method Description void
BuildJobXpp3Writer. write(java.io.OutputStream stream, BuildJob buildJob)
Method write.void
BuildJobXpp3Writer. write(java.io.Writer writer, BuildJob buildJob)
Method write.private void
BuildJobXpp3Writer. writeBuildJob(BuildJob buildJob, java.lang.String tagName, org.codehaus.plexus.util.xml.pull.XmlSerializer serializer)
Method writeBuildJob.
-