Add chip sha

This commit is contained in:
2026-01-06 01:18:31 +01:00
parent e167b00471
commit 7ef51e206f
6 changed files with 175 additions and 1 deletions

21
pom.xml
View File

@@ -152,6 +152,27 @@
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>4.9.10</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<gitPropertiesPath>${project.build.outputDirectory}/git.properties</gitPropertiesPath>
<includeOnlyProperties>
<includeOnlyProperty>git.commit.id</includeOnlyProperty>
<includeOnlyProperty>git.commit.id.abbrev</includeOnlyProperty>
</includeOnlyProperties>
</configuration>
</plugin>
</plugins>
</build>
</project>