maven-plugin-plugin/src/it/annotation-with-inheritance/src/main/java/org/apache/maven/plugin/coreit/ThirdMojo.java [59:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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/FirstMojo.java [59:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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()");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



