aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2025-02-14 22:53:20 -0600
committerWilliam Harrington <kb0iic@berzerkula.org>2025-02-14 22:53:20 -0600
commited9d90ff86459e754c75cdcc4a1150b554d3ad08 (patch)
tree40e087c7acfced84bf8e65f1a8a86b74faab8225 /pom.xml
parent23604fe00b70f20cc4e934d45a271a9bf17dc6be (diff)
Add SCM details.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 16 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 55a389b..7e2e6d0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,10 +21,10 @@
<developer/>
</developers>
<scm>
- <connection/>
- <developerConnection/>
- <tag/>
- <url/>
+ <connection>scm:git:git://git.berzerkula.org/builddb-sb</connection>
+ <developerConnection>scm:git:git://git@git.berzerkula.org:builddb-sb.git</developerConnection>
+ <tag>v${project.version}</tag>
+ <url>https://git.berzerkula.org/builddb-sb</url>
</scm>
<properties>
<java.version>17</java.version>
@@ -126,6 +126,18 @@
<commitIdGenerationMode>full</commitIdGenerationMode>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>3.1.1</version>
+ <configuration>
+ <goals>pre-integration-test</goals>
+ <preparationGoals>package</preparationGoals>
+ <allowTimestampedSnapshots>true</allowTimestampedSnapshots>
+ <tagNameFormat>v@{project.version}</tagNameFormat>
+ <remoteTagging>false</remoteTagging>
+ </configuration>
+ </plugin>
</plugins>
</build>