Class PluginDescriptorFilesGenerator
- java.lang.Object
-
- org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator
-
- All Implemented Interfaces:
Generator
public class PluginDescriptorFilesGenerator extends java.lang.Object implements Generator
Serializes- a standard Maven Plugin Descriptor XML file
- a descriptor containing a limited set of elements for
PluginHelpGenerator - an enhanced descriptor containing HTML values for some elements (instead of plain text as for the other two)
for
org.apache.maven.plugin.plugin.report.GoalRenderer
-
-
Constructor Summary
Constructors Constructor Description PluginDescriptorFilesGenerator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute(java.io.File destinationDirectory, org.apache.maven.tools.plugin.PluginToolsRequest request)Execute the generation for a given plugin descriptor.static java.io.FilegetEnhancedDescriptorFilePath(org.apache.maven.project.MavenProject project)protected voidprocessMojoDescriptor(org.apache.maven.plugin.descriptor.MojoDescriptor mojoDescriptor, org.codehaus.plexus.util.xml.XMLWriter w, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type, org.apache.maven.tools.plugin.javadoc.JavadocLinkGenerator javadocLinkGenerator, boolean isV4)voidwriteDescriptor(java.io.File destinationFile, org.apache.maven.tools.plugin.PluginToolsRequest request, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type)protected voidwriteParameterType(org.codehaus.plexus.util.xml.XMLWriter w, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type, org.apache.maven.tools.plugin.javadoc.JavadocLinkGenerator javadocLinkGenerator, org.apache.maven.plugin.descriptor.Parameter parameter, java.lang.String goal)Writes parameter type information and potentially also the related javadoc URL.
-
-
-
Method Detail
-
execute
public void execute(java.io.File destinationDirectory, org.apache.maven.tools.plugin.PluginToolsRequest request) throws GeneratorExceptionDescription copied from interface:GeneratorExecute the generation for a given plugin descriptor.- Specified by:
executein interfaceGenerator- Parameters:
destinationDirectory- requiredrequest- required- Throws:
GeneratorException- if any
-
getEnhancedDescriptorFilePath
public static java.io.File getEnhancedDescriptorFilePath(org.apache.maven.project.MavenProject project)
-
writeDescriptor
public void writeDescriptor(java.io.File destinationFile, org.apache.maven.tools.plugin.PluginToolsRequest request, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type) throws java.io.IOException- Throws:
java.io.IOException
-
processMojoDescriptor
protected void processMojoDescriptor(org.apache.maven.plugin.descriptor.MojoDescriptor mojoDescriptor, org.codehaus.plexus.util.xml.XMLWriter w, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type, org.apache.maven.tools.plugin.javadoc.JavadocLinkGenerator javadocLinkGenerator, boolean isV4)
-
writeParameterType
protected void writeParameterType(org.codehaus.plexus.util.xml.XMLWriter w, org.apache.maven.tools.plugin.generator.PluginDescriptorFilesGenerator.DescriptorType type, org.apache.maven.tools.plugin.javadoc.JavadocLinkGenerator javadocLinkGenerator, org.apache.maven.plugin.descriptor.Parameter parameter, java.lang.String goal)Writes parameter type information and potentially also the related javadoc URL.- Parameters:
w-type-javadocLinkGenerator-parameter-goal-
-
-