1
0

Add support for maven deploy plugin to make snapshot releases

This commit is contained in:
Vinoth Chandar
2019-05-30 18:53:56 -07:00
committed by vinoth chandar
parent 6b5abb5d92
commit 3b916ec1af

13
pom.xml
View File

@@ -243,6 +243,19 @@
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>