Add new plugin (release deployment) to pom.xml

Change-Id: Ia9d552836f48401505ec3972f377d13b6d149cd6
This commit is contained in:
jmarchel 2023-11-03 13:49:51 +01:00 committed by Jan Marchel
parent 7cee3405b7
commit 7bba7bb733

View File

@ -47,6 +47,17 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</project>