Class MojoDescriptor

java.lang.Object
org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
org.apache.maven.plugin.descriptor.MojoDescriptor
All Implemented Interfaces:
Cloneable

public class MojoDescriptor extends org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo> implements Cloneable
The bean containing the Mojo descriptor.
For more information about the usage tag, have a look to: https://maven.apache.org/developers/mojo-api-specification.html TODO is there a need for the delegation of MavenMojoDescriptor to this? Why not just extend ComponentDescriptor here?
  • Field Details Link icon

  • Constructor Details Link icon

    • MojoDescriptor Link icon

      public MojoDescriptor()
      Default constructor.
  • Method Details Link icon

    • getLanguage Link icon

      public String getLanguage()
      Returns:
      the language of this Mojo, i.e. java
    • setLanguage Link icon

      public void setLanguage(String language)
      Parameters:
      language - the new language
    • getDeprecated Link icon

      public String getDeprecated()
      Returns:
      Description with reason of a Mojo deprecation.
    • setDeprecated Link icon

      public void setDeprecated(String deprecated)
      Parameters:
      deprecated - Description with reason of a Mojo deprecation.
    • getParameters Link icon

      public List<Parameter> getParameters()
      Returns:
      the list of parameters copy. Any change to returned list is NOT reflected on this instance. To add parameters, use addParameter(Parameter) method.
    • setParameters Link icon

      public void setParameters(List<Parameter> parameters) throws DuplicateParameterException
      Parameters:
      parameters - the new list of parameters
      Throws:
      DuplicateParameterException - if any
    • addParameter Link icon

      public void addParameter(Parameter parameter) throws DuplicateParameterException
      Parameters:
      parameter - add a new parameter
      Throws:
      DuplicateParameterException - if any
    • getParameterMap Link icon

      public Map<String,Parameter> getParameterMap()
      Returns:
      the list parameters as a Map (keyed by Parameter.getName()) that is built from parameters list on each call. In other words, the map returned is built on fly and is a copy. Any change to this map is NOT reflected on list and other way around!
    • setDependencyResolutionRequired Link icon

      public void setDependencyResolutionRequired(String requiresDependencyResolution)
      Parameters:
      requiresDependencyResolution - the new required dependencies in a specified scope
    • getDependencyResolutionRequired Link icon

      public String getDependencyResolutionRequired()
    • isDependencyResolutionRequired Link icon

      @Deprecated public String isDependencyResolutionRequired()
      Deprecated.
      Returns:
      the required dependencies in a specified scope TODO the name is not intelligible
    • setDependencyCollectionRequired Link icon

      public void setDependencyCollectionRequired(String requiresDependencyCollection)
      Since:
      3.0-alpha-3
    • getDependencyCollectionRequired Link icon

      public String getDependencyCollectionRequired()
      Gets the scope of (transitive) dependencies that should be collected. Dependency collection refers to the process of calculating the complete dependency tree in terms of artifact coordinates. In contrast to dependency resolution, this does not include the download of the files for the dependency artifacts. It is meant for mojos that only want to analyze the set of transitive dependencies, in particular during early lifecycle phases where full dependency resolution might fail due to projects which haven't been built yet.
      Returns:
      The scope of (transitive) dependencies that should be collected or null if none.
      Since:
      3.0-alpha-3
    • setProjectRequired Link icon

      public void setProjectRequired(boolean requiresProject)
      Parameters:
      requiresProject - true if the Mojo needs a Maven project to be executed, false otherwise.
    • isProjectRequired Link icon

      public boolean isProjectRequired()
      Returns:
      true if the Mojo needs a Maven project to be executed, false otherwise.
    • setOnlineRequired Link icon

      public void setOnlineRequired(boolean requiresOnline)
      Parameters:
      requiresOnline - true if the Mojo is online, false otherwise.
    • isOnlineRequired Link icon

      public boolean isOnlineRequired()
      Returns:
      true if the Mojo is online, false otherwise.
    • requiresOnline Link icon

      public boolean requiresOnline()
      Returns:
      true if the Mojo is online, false otherwise.
    • getPhase Link icon

      public String getPhase()
      Returns:
      the bound phase name of the Mojo
    • setPhase Link icon

      public void setPhase(String phase)
      Parameters:
      phase - the new bound phase name of the Mojo
    • getSince Link icon

      public String getSince()
      Returns:
      the version when the Mojo was added to the API
    • setSince Link icon

      public void setSince(String since)
      Parameters:
      since - the new version when the Mojo was added to the API
    • getGoal Link icon

      public String getGoal()
      Returns:
      The goal name of the Mojo
    • setGoal Link icon

      public void setGoal(String goal)
      Parameters:
      goal - The new goal name of the Mojo
    • getExecutePhase Link icon

      public String getExecutePhase()
      Returns:
      the invocation phase of the Mojo
    • setExecutePhase Link icon

      public void setExecutePhase(String executePhase)
      Parameters:
      executePhase - the new invocation phase of the Mojo
    • alwaysExecute Link icon

      public boolean alwaysExecute()
      Returns:
      true if the Mojo uses always for the executionStrategy
    • getExecutionStrategy Link icon

      public String getExecutionStrategy()
      Returns:
      the execution strategy
    • setExecutionStrategy Link icon

      public void setExecutionStrategy(String executionStrategy)
      Parameters:
      executionStrategy - the new execution strategy
    • getMojoConfiguration Link icon

      public org.codehaus.plexus.configuration.PlexusConfiguration getMojoConfiguration()
      Returns:
      the mojo configuration
    • setMojoConfiguration Link icon

      public void setMojoConfiguration(org.codehaus.plexus.configuration.PlexusConfiguration mojoConfiguration)
      Parameters:
      mojoConfiguration - a new mojo configuration
    • getRole Link icon

      public String getRole()
      Overrides:
      getRole in class org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
    • getRoleHint Link icon

      public String getRoleHint()
      Overrides:
      getRoleHint in class org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
    • getId Link icon

      public String getId()
      Returns:
      the id of the mojo, based on the goal name
    • getFullGoalName Link icon

      public String getFullGoalName()
      Returns:
      the full goal name
      See Also:
    • getComponentType Link icon

      public String getComponentType()
      Overrides:
      getComponentType in class org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
    • getPluginDescriptor Link icon

      public PluginDescriptor getPluginDescriptor()
      Returns:
      the plugin descriptor
    • setPluginDescriptor Link icon

      public void setPluginDescriptor(PluginDescriptor pluginDescriptor)
      Parameters:
      pluginDescriptor - the new plugin descriptor
    • isInheritedByDefault Link icon

      public boolean isInheritedByDefault()
      Returns:
      true if the Mojo is inherited, false otherwise.
    • setInheritedByDefault Link icon

      public void setInheritedByDefault(boolean inheritedByDefault)
      Parameters:
      inheritedByDefault - true if the Mojo is inherited, false otherwise.
    • equals Link icon

      public boolean equals(Object object)
      Overrides:
      equals in class org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class org.codehaus.plexus.component.repository.ComponentDescriptor<Mojo>
    • getExecuteLifecycle Link icon

      public String getExecuteLifecycle()
      Returns:
      the invocation lifecycle of the Mojo
    • setExecuteLifecycle Link icon

      public void setExecuteLifecycle(String executeLifecycle)
      Parameters:
      executeLifecycle - the new invocation lifecycle of the Mojo
    • setAggregator Link icon

      public void setAggregator(boolean aggregator)
      Parameters:
      aggregator - true if the Mojo uses the Maven project and its child modules, false otherwise.
    • isAggregator Link icon

      public boolean isAggregator()
      Returns:
      true if the Mojo uses the Maven project and its child modules, false otherwise.
    • isDirectInvocationOnly Link icon

      public boolean isDirectInvocationOnly()
      Returns:
      true if the Mojo cannot be invoked directly, false otherwise.
    • setDirectInvocationOnly Link icon

      public void setDirectInvocationOnly(boolean directInvocationOnly)
      Parameters:
      directInvocationOnly - true if the Mojo cannot be invoked directly, false otherwise.
    • isRequiresReports Link icon

      public boolean isRequiresReports()
      Returns:
      true if the Mojo needs reports to run, false otherwise.
    • setRequiresReports Link icon

      public void setRequiresReports(boolean requiresReports)
      Parameters:
      requiresReports - true if the Mojo needs reports to run, false otherwise.
    • setExecuteGoal Link icon

      public void setExecuteGoal(String executeGoal)
      Parameters:
      executeGoal - the new invocation goal of the Mojo
    • getExecuteGoal Link icon

      public String getExecuteGoal()
      Returns:
      the invocation goal of the Mojo
    • isThreadSafe Link icon

      public boolean isThreadSafe()
      Returns:
      True if the Mojo is thread-safe and can be run safely in parallel
      Since:
      3.0-beta-2
    • setThreadSafe Link icon

      public void setThreadSafe(boolean threadSafe)
      Parameters:
      threadSafe - indicates that the mojo is thread-safe and can be run safely in parallel
      Since:
      3.0-beta-2
    • isForking Link icon

      public boolean isForking()
      Returns:
      true if this mojo forks either a goal or the lifecycle, false otherwise.
    • clone Link icon

      public MojoDescriptor clone()
      Creates a shallow copy of this mojo descriptor.
      Overrides:
      clone in class Object