You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Context

Maven plugins are described in META-INF/maven/plugin.xml descriptor, which is in general generated by maven-plugin-plugin. Information for the generator are written as javadoc annotations in java source: see maven-plugin-tools-java.

Using java 5 annotations instead of javadoc ones have multiple benefits:

  • compile-time checks for plugin metadata, with enums for some annotations
  • inheritance support
  • annotations are supported in most IDEs, providing code-completion and syntactic checks

see plexus-component-annotations for an example of such a work done on Plexus.

Existing implementations

Multiple implementations of such annotations exist:

Proposal

Continue the work started on MNG-2521 before plugin-tools extraction from Maven Core.

Annotations:

  • 4 annotations: Mojo, MojoExecute, MojoParameter and MojoComponent
  • java package: org.apache.maven.tools.plugin.annotations (consistent with maven-plugin-tools-api
  • component: maven-plugin-tools-annotations in plugin-tools

Extractor: addition to maven-plugin-tools-java

  • No labels