Skip to content

Commit

Permalink
Added dispatch trigger
Browse files Browse the repository at this point in the history
Added release plugin
  • Loading branch information
Eddie Carpenter committed Aug 20, 2024
1 parent 1963d9c commit 5cfc914
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<maven-failsafe-plugin.version>3.1.2</maven-failsafe-plugin.version>
<maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
<maven-jandex-plugin.version>3.1.1</maven-jandex-plugin.version>
<version.release.plugin>3.0.1</version.release.plugin>

<!--Test dependencies-->
<junit-jupiter.version>5.11.0</junit-jupiter.version>
Expand Down Expand Up @@ -157,6 +158,20 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.release.plugin}</version>
<configuration>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<remoteTagging>false</remoteTagging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 5cfc914

Please sign in to comment.