Skip to content

Commit

Permalink
[INJIMOB-1679]: add plugin project13.maven in pom file
Browse files Browse the repository at this point in the history
Signed-off-by: Alka Prasad <[email protected]>
  • Loading branch information
Alka1703 committed Aug 12, 2024
1 parent 3105ed5 commit 005ad12
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions vc-verifier/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
<configuration>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<includeOnlyProperties>
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
</includeOnlyProperties>
<commitIdGenerationMode>full</commitIdGenerationMode>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<!-- <format>json</format> -->
</configuration>
</plugin>
</plugins>
</build>
<licenses>
Expand Down

0 comments on commit 005ad12

Please sign in to comment.