From 5eec439763b582c5655e407573ebabed51fdd33f Mon Sep 17 00:00:00 2001 From: Anthony Bucci Date: Fri, 21 Mar 2025 15:52:01 -0400 Subject: [PATCH] DRYD-1712/DRYD-1715: only run `git-commit-id-plugin` once (#457) * DRYD-1712/DRYD-1715: removed git-commit-id-plugin from topmost pom, which was inherited by all child poms, and instead placed it in JaxRsServiceProvider. This is the only project that needs it, since this is where the WAR is created and that's where systeminfo picks it up. --------- Co-authored-by: Anthony Bucci --- pom.xml | 28 --------------------------- services/JaxRsServiceProvider/pom.xml | 21 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 28 deletions(-) diff --git a/pom.xml b/pom.xml index 230c7b37a..8f3f5d437 100644 --- a/pom.xml +++ b/pom.xml @@ -227,29 +227,6 @@ - - - pl.project13.maven - git-commit-id-plugin - 4.9.10 - - - - revision - - initialize - - - - true - ${project.build.outputDirectory}/git.properties - - ^git.commit.id.abbrev$ - - full - - - org.apache.maven.plugins maven-dependency-plugin @@ -437,11 +414,6 @@ - - - pl.project13.maven - git-commit-id-plugin - diff --git a/services/JaxRsServiceProvider/pom.xml b/services/JaxRsServiceProvider/pom.xml index 89eb64735..d574297c0 100644 --- a/services/JaxRsServiceProvider/pom.xml +++ b/services/JaxRsServiceProvider/pom.xml @@ -873,6 +873,27 @@ + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + + revision + + initialize + + + + true + ${project.build.outputDirectory}/git.properties + + ^git.commit.id.abbrev$ + + full + + org.codehaus.cargo cargo-maven2-plugin -- 2.47.3