Inject git last commit id to SpringBoot project
1) Add git-commit-id-plugin in pom.xml
<build>
<plugins>
<plugin>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<includeOnlyProperties>
<includeOnlyProperty>git.commit.id.abbrev</includeOnlyProperty>
</includeOnlyProperties>
</configuration>
</plugin>
...
</plugins>
</build>
...
</plugins>
</build>
2) Get the value via Thymeleaf
<head th:with="abbrev=${@environment.getProperty('git.commit.id.abbrev')}">
<head th:with="abbrev=${@environment.getProperty('git.commit.id.abbrev')}">
Comments
Post a Comment