From 2fe5fed0115a7e7e7f849a65e315c30980d768a7 Mon Sep 17 00:00:00 2001 From: Braydon Date: Thu, 3 Aug 2023 01:33:04 -0400 Subject: [PATCH] Initial Commit --- .gitignore | 27 +++++++++++++++++++++++++++ README.md | 2 ++ pom.xml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71c0c56 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +*.class +*.log +*.ctxt +.mtj.tmp/ +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar +hs_err_pid* +replay_pid* +.idea +cmake-build-*/ +.idea/**/mongoSettings.xml +*.iws +out/ +build/ +work/ +.idea_modules/ +atlassian-ide-plugin.xml +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties +git.properties \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a96414 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# maven-git-versioning +This plugin seamlessly converts standard "-SNAPSHOT" versions into a more descriptive format, "-dev-{gitDepth}-{gitHash}", allowing you to gain valuable insights into the exact commit from which each jar was built. \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..b6b2772 --- /dev/null +++ b/pom.xml @@ -0,0 +1,50 @@ + + + 4.0.0 + + me.braydon + maven-git-versioning + 1.0-SNAPSHOT + + + 8 + 8 + UTF-8 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 8 + 8 + + + + org.apache.maven.plugins + maven-shade-plugin + 3.1.0 + + + package + + shade + + + + + + + + src/main/resources + true + + + + + \ No newline at end of file