From 3f4c712257fc72e2152cbd4edb50c0f932225310 Mon Sep 17 00:00:00 2001 From: Stefan Begerad Date: Wed, 5 Jan 2022 02:12:16 -0500 Subject: [PATCH] feat(create-mvn-plugin-use): initial commit --- baeldung-create-mvn-plugin-use/.gitignore | 31 ++++++++++++++++ baeldung-create-mvn-plugin-use/README.md | 12 ++++++ baeldung-create-mvn-plugin-use/pom.xml | 45 +++++++++++++++++++++++ 3 files changed, 88 insertions(+) create mode 100644 baeldung-create-mvn-plugin-use/.gitignore create mode 100644 baeldung-create-mvn-plugin-use/README.md create mode 100644 baeldung-create-mvn-plugin-use/pom.xml diff --git a/baeldung-create-mvn-plugin-use/.gitignore b/baeldung-create-mvn-plugin-use/.gitignore new file mode 100644 index 0000000..33653da --- /dev/null +++ b/baeldung-create-mvn-plugin-use/.gitignore @@ -0,0 +1,31 @@ + +# Files +.classpath +.externalToolBuilders +.gradle +.project +.pydevproject +.settings +.sonar +*~ +*.ipr +*.iml +*.iws +*.swp +*.DS_Store +*.snap.debug +dependency-reduced-pom.xml + +# Directories +.idea/ +.run/ +.venv/ +_site/ +build/ +dist/ +docs/_build/ +gen-java/ +gen-javabean/ +gen-py/ +node_modules/ +target/ diff --git a/baeldung-create-mvn-plugin-use/README.md b/baeldung-create-mvn-plugin-use/README.md new file mode 100644 index 0000000..6c7457c --- /dev/null +++ b/baeldung-create-mvn-plugin-use/README.md @@ -0,0 +1,12 @@ +# Overview +This project shows how to use a self-created Maven plugin. + +# Execution +Call the following instructions to execute the plugin on the command line. + +``` +mvn clean compile +``` + +# Links +[Example](https://www.baeldung.com/maven-plugin) diff --git a/baeldung-create-mvn-plugin-use/pom.xml b/baeldung-create-mvn-plugin-use/pom.xml new file mode 100644 index 0000000..2669048 --- /dev/null +++ b/baeldung-create-mvn-plugin-use/pom.xml @@ -0,0 +1,45 @@ + + + 4.0.0 + de.swingbe + example + pom + 0.0.1 + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + junit + junit + 4.12 + test + + + + + + + de.swingbe + counter-maven-plugin + 0.0.1 + + + + dependency-counter + + + + + test + + + + + +