From d9c5879fbe4f0ae349518f5364644d2dbf7a299b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Mon, 24 Jan 2022 20:39:50 +0100 Subject: [PATCH] Adding first maven mojo --- 2022/01/mojo_demo1/maven_mojo1/.gitignore | 2 + 2022/01/mojo_demo1/maven_mojo1/pom.xml | 33 ++++++++++++ .../main/java/ch/polgrabia/demos/MyMojo.java | 53 +++++++++++++++++++ 3 files changed, 88 insertions(+) create mode 100644 2022/01/mojo_demo1/maven_mojo1/.gitignore create mode 100644 2022/01/mojo_demo1/maven_mojo1/pom.xml create mode 100644 2022/01/mojo_demo1/maven_mojo1/src/main/java/ch/polgrabia/demos/MyMojo.java diff --git a/2022/01/mojo_demo1/maven_mojo1/.gitignore b/2022/01/mojo_demo1/maven_mojo1/.gitignore new file mode 100644 index 0000000..ee44a96 --- /dev/null +++ b/2022/01/mojo_demo1/maven_mojo1/.gitignore @@ -0,0 +1,2 @@ +.idea +target diff --git a/2022/01/mojo_demo1/maven_mojo1/pom.xml b/2022/01/mojo_demo1/maven_mojo1/pom.xml new file mode 100644 index 0000000..045717d --- /dev/null +++ b/2022/01/mojo_demo1/maven_mojo1/pom.xml @@ -0,0 +1,33 @@ + + 4.0.0 + ch.polgrabia.demos + maven_mojo1 + maven-plugin + 0.0.1-SNAPSHOT + maven_mojo1 Maven Mojo + http://maven.apache.org + + 1.8 + 1.8 + + + + org.apache.maven + maven-plugin-api + 3.6.3 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.2 + provided + + + junit + junit + 3.8.1 + test + + + diff --git a/2022/01/mojo_demo1/maven_mojo1/src/main/java/ch/polgrabia/demos/MyMojo.java b/2022/01/mojo_demo1/maven_mojo1/src/main/java/ch/polgrabia/demos/MyMojo.java new file mode 100644 index 0000000..d00416a --- /dev/null +++ b/2022/01/mojo_demo1/maven_mojo1/src/main/java/ch/polgrabia/demos/MyMojo.java @@ -0,0 +1,53 @@ +package ch.polgrabia.demos; + +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.logging.Log; +import org.apache.maven.plugins.annotations.LifecyclePhase; +import org.apache.maven.plugins.annotations.Mojo; +import org.apache.maven.plugins.annotations.Parameter; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; + +@Mojo(name = "my-mojo", defaultPhase = LifecyclePhase.COMPILE) +public class MyMojo + extends AbstractMojo { + private final Log logger = getLog(); + + @Parameter(property = "outputDirectory", defaultValue = "target") + private File outputDirectory; + + public void execute() + throws MojoExecutionException { + logger.info("Starting execution..."); + File f = outputDirectory; + + if (!f.exists()) { + if (!f.mkdirs()) { + throw new MojoExecutionException("Failed to create directory: " + f.getAbsolutePath()); + } + } + + File touch = new File(f, "touch.txt"); + + FileWriter w = null; + try { + w = new FileWriter(touch); + + w.write("touch.txt"); + } catch (IOException e) { + throw new MojoExecutionException("Error creating file " + touch, e); + } finally { + if (w != null) { + try { + w.close(); + } catch (IOException e) { + logger.error("I couldn't close it the file", e); + } + } + logger.info("Ending execution..."); + } + } +}