Skip to content

Commit

Permalink
Merge pull request #731 from terrestris/fix-gs-interceptor
Browse files Browse the repository at this point in the history
fix: adds missing git-commit-id-maven-plugin in gs-interceptor
  • Loading branch information
ahennr authored Sep 4, 2023
2 parents b1e0db3 + a6b390a commit 90545fe
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions shogun-gs-interceptor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,29 @@
<version>${maven-site-plugin.version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>5.0.0</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
<phase>initialize</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>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
Expand Down

0 comments on commit 90545fe

Please sign in to comment.