maven-plugin-plugin/src/it/annotation-with-inheritance-reactor/module-mojo/src/main/java/org/apache/maven/plugin/coreit/CoreIt0014Mojo.java [33:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Mojo(name = "it0014")
public class CoreIt0014Mojo extends AbstractMojo {

    @Parameter(property = "project.build.directory", required = true)
    private String outputDirectory;

    public void execute() throws MojoExecutionException {
        getLog().info("outputDirectory = " + outputDirectory);

        File f = new File(outputDirectory);

        if (!f.exists()) {
            f.mkdirs();
        }

        File touch = new File(f, "touch.txt");

        try {
            touch.createNewFile();
        } catch (IOException e) {
            throw new MojoExecutionException("Error writing verification file.", e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-plugin-plugin/src/it/java-basic-annotations-jdk8/src/main/java/org/apache/maven/plugin/coreit/CoreIt0014Mojo.java [33:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Mojo(name = "it0014")
public class CoreIt0014Mojo extends AbstractMojo {

    @Parameter(property = "project.build.directory", required = true)
    private String outputDirectory;

    public void execute() throws MojoExecutionException {
        getLog().info("outputDirectory = " + outputDirectory);

        File f = new File(outputDirectory);

        if (!f.exists()) {
            f.mkdirs();
        }

        File touch = new File(f, "touch.txt");

        try {
            touch.createNewFile();
        } catch (IOException e) {
            throw new MojoExecutionException("Error writing verification file.", e);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



