diff options
Diffstat (limited to 'springboot')
-rw-r--r-- | springboot/spring-boot-setup/src/main/resources/pom-template.xml | 12 | ||||
-rw-r--r-- | springboot/springboot1/pom.xml | 12 | ||||
-rw-r--r-- | springboot/springboot2/pom.xml | 12 |
3 files changed, 36 insertions, 0 deletions
diff --git a/springboot/spring-boot-setup/src/main/resources/pom-template.xml b/springboot/spring-boot-setup/src/main/resources/pom-template.xml index cfbf017b..c69394c5 100644 --- a/springboot/spring-boot-setup/src/main/resources/pom-template.xml +++ b/springboot/spring-boot-setup/src/main/resources/pom-template.xml @@ -662,6 +662,18 @@ <tag>\${project.artifactId}-\${project.version}</tag> </configuration> </plugin> + <plugin> + <groupId>pl.project13.maven</groupId> + <artifactId>git-commit-id-plugin</artifactId> + <version>4.0.0</version> + <configuration> + <commitIdGenerationMode>full</commitIdGenerationMode> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> + </includeOnlyProperties> + </configuration> + </plugin> </plugins> </build> diff --git a/springboot/springboot1/pom.xml b/springboot/springboot1/pom.xml index 00e8f0b1..ec770c27 100644 --- a/springboot/springboot1/pom.xml +++ b/springboot/springboot1/pom.xml @@ -662,6 +662,18 @@ <tag>${project.artifactId}-${project.version}</tag> </configuration> </plugin> + <plugin> + <groupId>pl.project13.maven</groupId> + <artifactId>git-commit-id-plugin</artifactId> + <version>4.0.0</version> + <configuration> + <commitIdGenerationMode>full</commitIdGenerationMode> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> + </includeOnlyProperties> + </configuration> + </plugin> </plugins> </build> diff --git a/springboot/springboot2/pom.xml b/springboot/springboot2/pom.xml index b604cf00..8b21e8f7 100644 --- a/springboot/springboot2/pom.xml +++ b/springboot/springboot2/pom.xml @@ -662,6 +662,18 @@ <tag>${project.artifactId}-${project.version}</tag> </configuration> </plugin> + <plugin> + <groupId>pl.project13.maven</groupId> + <artifactId>git-commit-id-plugin</artifactId> + <version>4.0.0</version> + <configuration> + <commitIdGenerationMode>full</commitIdGenerationMode> + <includeOnlyProperties> + <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> + <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> + </includeOnlyProperties> + </configuration> + </plugin> </plugins> </build> |