maven-plugin-plugin/src/it/java-basic-annotations-jdkcurrent/src/main/java/org/apache/maven/plugin/coreit/FirstMojo.java [64:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Parameter(name = "namedParam", alias = "alias")
    private String aliasedParam;

    @Component(role = MavenProjectHelper.class, hint = "test")
    private Object projectHelper;

    @Component
    private MavenSession session;

    @Component
    private MavenProject project;

    @Component
    private MojoExecution mojo;

    @Component
    private PluginDescriptor plugin;

    @Component
    private Settings settings;

    public void execute() throws MojoExecutionException {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-plugin-plugin/src/it/java-basic-annotations/src/main/java/org/apache/maven/plugin/coreit/FirstMojo.java [66:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Parameter(name = "namedParam", alias = "alias")
    private String aliasedParam;

    @Component(role = MavenProjectHelper.class, hint = "test")
    private Object projectHelper;

    @Component
    private MavenSession session;

    @Component
    private MavenProject project;

    @Component
    private MojoExecution mojo;

    @Component
    private PluginDescriptor plugin;

    @Component
    private Settings settings;

    public void execute() throws MojoExecutionException {}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



