You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by va...@apache.org on 2020/05/08 01:12:51 UTC

[commons-crypto] branch master updated: Update pom.xml to explicitly prevent cleaning during release:prepare

This is an automated email from the ASF dual-hosted git repository.

vanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new e962854  Update pom.xml to explicitly prevent cleaning during release:prepare
e962854 is described below

commit e96285462b86798e7a76defdecf16dbbf4f4b8a8
Author: Geoffrey Blake <bl...@amazon.com>
AuthorDate: Thu May 7 20:12:43 2020 -0500

    Update pom.xml to explicitly prevent cleaning during release:prepare
    
    Update pom.xml to configure the maven-release-plugin to not perform and clean when doing a release:prepare to allow build artifacts from other platform builds to be incorporated into the final Jar for publishing to the maven artifact repositories.
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 90d6878..0cafbee 100644
--- a/pom.xml
+++ b/pom.xml
@@ -610,6 +610,14 @@ The following provides more details on the included cryptographic software:
           <ignoredDifferencesFile>${basedir}/clirr-excludes.xml</ignoredDifferencesFile>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.5.3</version>
+        <configuration>
+          <preparationGoals>verify</preparationGoals>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <reporting>