diff options
author | William Harrington <kb0iic@berzerkula.org> | 2025-02-14 22:53:20 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2025-02-14 22:53:20 -0600 |
commit | ed9d90ff86459e754c75cdcc4a1150b554d3ad08 (patch) | |
tree | 40e087c7acfced84bf8e65f1a8a86b74faab8225 /pom.xml | |
parent | 23604fe00b70f20cc4e934d45a271a9bf17dc6be (diff) |
Add SCM details.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -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> |