aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2025-02-14 22:16:16 -0600
committerWilliam Harrington <kb0iic@berzerkula.org>2025-02-14 22:16:16 -0600
commit10033b0124ff8aba67aa9197bfb1dd00646e1668 (patch)
treeb48d24a03dedd4b555ae4fece135d86bb702f3c7 /pom.xml
parentca8e68ac123e3f0ffbaf4c87dfe4cacc4eea6800 (diff)
Release v1.0.0v1.0.0
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index c9ab951..8fad09e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
</parent>
<groupId>org.berzerkula</groupId>
<artifactId>builddb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.0.0</version>
<name>builddb</name>
<description>builddb</description>
<url/>
@@ -103,6 +103,29 @@
<artifactId>jasypt-maven-plugin</artifactId>
<version>3.0.5</version>
</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>
</plugins>
</build>