Skip to content

Commit

Permalink
Add the maven release plugin
Browse files Browse the repository at this point in the history
The release plugin for maven was not in the pom leading to release errors.
  • Loading branch information
mreno-EBSCO committed Dec 5, 2018
1 parent 3572089 commit a3bdc17
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<preparationGoals>clean verify</preparationGoals>
<tagNameFormat>v@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit a3bdc17

Please sign in to comment.