Package org.apache.maven.plugins.help
Class AbstractHelpMojo
java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.apache.maven.plugins.help.AbstractHelpMojo
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
- Direct Known Subclasses:
AbstractEffectiveMojo,ActiveProfilesMojo,AllProfilesMojo,DescribeMojo,EvaluateMojo,ListDependencyTypesMojo,ListLifecyclePhasesMojo,ListPackagingMojo,SystemMojo
public abstract class AbstractHelpMojo
extends org.apache.maven.plugin.AbstractMojo
Base class with some Help Mojo functionalities.
- Since:
- 2.1
- Author:
- Vincent Siveton
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final intThe maximum length of a display line.protected static final StringThe line separator for the current OS.protected FileOptional parameter to write the output of this help to a given file using UTF-8 encoding, instead of writing to the console.protected org.apache.maven.project.MavenProjectCurrent Maven project.protected final org.apache.maven.project.ProjectBuilderMaven Project Builder component.protected final org.eclipse.aether.RepositorySystemComponent used to resolve artifacts and download their files from remote repositories.protected org.apache.maven.execution.MavenSessionThe current build session instance.Fields inherited from interface org.apache.maven.plugin.Mojo
ROLE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractHelpMojo(org.apache.maven.project.ProjectBuilder projectBuilder, org.eclipse.aether.RepositorySystem repositorySystem) -
Method Summary
Modifier and TypeMethodDescriptionprotected org.eclipse.aether.artifact.ArtifactgetAetherArtifact(String artifactString, String type) Parses the given String into GAV artifact coordinate information, adding the given type.protected org.apache.maven.project.MavenProjectgetMavenProject(String artifactString) Retrieves the Maven Project associated with the given artifact String, in the form ofgroupId:artifactId[:version].protected org.eclipse.aether.resolution.ArtifactResultresolveArtifact(org.eclipse.aether.artifact.Artifact artifact) protected static voidUtility method to write a content to a given file.protected static voidwriteFile(File output, StringBuilder content) Utility method to write a content to a given file.Methods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContextMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.maven.plugin.Mojo
execute
-
Field Details
-
LINE_LENGTH
protected static final int LINE_LENGTHThe maximum length of a display line.- See Also:
-
LS
The line separator for the current OS. -
project
@Parameter(defaultValue="${project}", readonly=true, required=true) protected org.apache.maven.project.MavenProject projectCurrent Maven project. -
session
@Parameter(defaultValue="${session}", readonly=true, required=true) protected org.apache.maven.execution.MavenSession sessionThe current build session instance. This is used for plugin manager API calls. -
output
Optional parameter to write the output of this help to a given file using UTF-8 encoding, instead of writing to the console.
Note: Could be a relative path. -
projectBuilder
protected final org.apache.maven.project.ProjectBuilder projectBuilderMaven Project Builder component. -
repositorySystem
protected final org.eclipse.aether.RepositorySystem repositorySystemComponent used to resolve artifacts and download their files from remote repositories.
-
-
Constructor Details
-
AbstractHelpMojo
protected AbstractHelpMojo(org.apache.maven.project.ProjectBuilder projectBuilder, org.eclipse.aether.RepositorySystem repositorySystem)
-
-
Method Details
-
writeFile
Utility method to write a content to a given file.- Parameters:
output- is the wanted output file.content- contains the content to be written to the file.- Throws:
IOException- if any- See Also:
-
writeFile
Utility method to write a content to a given file.- Parameters:
output- is the wanted output file.content- contains the content to be written to the file.- Throws:
IOException- if any
-
getAetherArtifact
protected org.eclipse.aether.artifact.Artifact getAetherArtifact(String artifactString, String type) throws org.apache.maven.plugin.MojoExecutionException Parses the given String into GAV artifact coordinate information, adding the given type.- Parameters:
artifactString- should respect the formatgroupId:artifactId[:version]type- The extension for the artifact, must not benull.- Returns:
- the
Artifactobject for theartifactStringparameter. - Throws:
org.apache.maven.plugin.MojoExecutionException- if theartifactStringdoesn't respect the format.
-
getMavenProject
protected org.apache.maven.project.MavenProject getMavenProject(String artifactString) throws org.apache.maven.plugin.MojoExecutionException Retrieves the Maven Project associated with the given artifact String, in the form ofgroupId:artifactId[:version]. This resolves the POM artifact at those coordinates and then builds the Maven project from it.- Parameters:
artifactString- Coordinates of the Maven project to get.- Returns:
- New Maven project.
- Throws:
org.apache.maven.plugin.MojoExecutionException- If there was an error while getting the Maven project.
-
resolveArtifact
protected org.eclipse.aether.resolution.ArtifactResult resolveArtifact(org.eclipse.aether.artifact.Artifact artifact) throws org.eclipse.aether.RepositoryException - Throws:
org.eclipse.aether.RepositoryException
-