maven-plugin-plugin/src/it/annotation-with-inheritance/src/main/java/org/apache/maven/plugin/coreit/FirstMojo.java [50:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Parameter(alias = "alias")
    private String aliasedParam;

    @Component(role = MavenProjectHelper.class) // , roleHint = "default"
    private Object projectHelper;

    @Parameter(defaultValue = "${project.artifacts}", required = true, readonly = true)
    private Set<Artifact> dependencies;

    public void execute() throws MojoExecutionException {
        if (basedir == null) {
            throw new MojoExecutionException("basedir == null");
        }
        if (touchFile == null) {
            throw new MojoExecutionException("touchFile == null");
        }
        if (projectHelper == null) {
            throw new MojoExecutionException("projectHelper == null");
        }

        if (dependencies.isEmpty()) {
            throw new MojoExecutionException("dependencies.isEmpty()");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-plugin-plugin/src/it/annotation-with-inheritance/src/main/java/org/apache/maven/plugin/coreit/ThirdMojo.java [50:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Parameter(alias = "alias")
    private String aliasedParam;

    @Component(role = MavenProjectHelper.class) // , roleHint = "default"
    private Object projectHelper;

    @Parameter(defaultValue = "${project.artifacts}", required = true, readonly = true)
    private Set<Artifact> dependencies;

    public void execute() throws MojoExecutionException {
        if (basedir == null) {
            throw new MojoExecutionException("basedir == null");
        }
        if (touchFile == null) {
            throw new MojoExecutionException("touchFile == null");
        }
        if (projectHelper == null) {
            throw new MojoExecutionException("projectHelper == null");
        }
        if (dependencies.isEmpty()) {
            throw new MojoExecutionException("dependencies.isEmpty()");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



