Class BuildStep

java.lang.Object
org.apache.maven.lifecycle.internal.concurrent.BuildStep

public class BuildStep extends Object
  • Field Details

  • Constructor Details

  • Method Details

    • isCreated

      public boolean isCreated()
    • isDone

      public boolean isDone()
    • allPredecessors

      public Stream<BuildStep> allPredecessors()
    • isSuccessorOf

      public boolean isSuccessorOf(BuildStep step)
    • skip

      public void skip()
    • addMojo

      public void addMojo(MojoExecution mojo, int priority)
    • executeAfter

      public void executeAfter(BuildStep stepToExecuteBefore)
    • executeBefore

      public void executeBefore(BuildStep stepToExecuteAfter)
    • executions

      public Stream<MojoExecution> executions()
    • hasExecutions

      public boolean hasExecutions()
      Indicates whether executing this step performs any actual work. Steps without mojo executions are pure ordering nodes: this is the case for the before: and after: steps of a phase, and for every phase that lies outside the scope of the tasks the user requested.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object