diff options
Diffstat (limited to 'ms/pom.xml')
-rw-r--r-- | ms/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ms/pom.xml b/ms/pom.xml index 7ec3f39a2..7a0168f5b 100644 --- a/ms/pom.xml +++ b/ms/pom.xml @@ -32,9 +32,29 @@ <description>Micro-services</description> <modules> + <module>error-catalog</module> <module>blueprintsprocessor</module> <module>py-executor</module> <module>command-executor</module> <module>sdclistener</module> </modules> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>pl.project13.maven</groupId> + <artifactId>git-commit-id-plugin</artifactId> + <version>4.0.0</version> + <configuration> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> + </includeOnlyProperties> + <commitIdGenerationMode>full</commitIdGenerationMode> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> </project> |