feat(plugins): add maven-release-plugin version 3.1.1
All checks were successful
Build, test and publish the Quarkus libraries / build (push) Successful in 1m38s
All checks were successful
Build, test and publish the Quarkus libraries / build (push) Successful in 1m38s
This commit is contained in:
parent
9e6dd3dab1
commit
c9995eb309
1 changed files with 19 additions and 0 deletions
19
pom.xml
19
pom.xml
|
@ -29,6 +29,7 @@
|
||||||
<palantir-java-format.version>2.50.0</palantir-java-format.version>
|
<palantir-java-format.version>2.50.0</palantir-java-format.version>
|
||||||
<jacoco-plugin.version>0.8.12</jacoco-plugin.version> <!-- Match with version from Quarkus BOM -->
|
<jacoco-plugin.version>0.8.12</jacoco-plugin.version> <!-- Match with version from Quarkus BOM -->
|
||||||
<jandex-plugin.version>3.2.3</jandex-plugin.version>
|
<jandex-plugin.version>3.2.3</jandex-plugin.version>
|
||||||
|
<release-plugin.version>3.1.1</release-plugin.version>
|
||||||
|
|
||||||
<!-- Build properties -->
|
<!-- Build properties -->
|
||||||
<maven.compiler.release>21</maven.compiler.release>
|
<maven.compiler.release>21</maven.compiler.release>
|
||||||
|
@ -66,6 +67,13 @@
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix/quarkus-commons.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@git-ssh.kvant.cloud:2222/phoenix/quarkus-commons.git</developerConnection>
|
||||||
|
<url>https://git.kvant.cloud/phoenix/quarkus-commons.git</url>
|
||||||
|
<tag>HEAD</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.quarkus</groupId>
|
<groupId>io.quarkus</groupId>
|
||||||
|
@ -178,6 +186,17 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>${release-plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
||||||
|
<checkModificationExcludes>mvnw</checkModificationExcludes>
|
||||||
|
<scmReleaseCommitComment>chore: release @{releaseLabel}</scmReleaseCommitComment>
|
||||||
|
<scmDevelopmentCommitComment>chore: prepare for next development iteration [skip ci]</scmDevelopmentCommitComment>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue