diff options
-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> |