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

djkevincr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
     new 5f21e1e  Add checksum plugin to release profile
     new 5744808  Merge pull request #168 from djkevincr/upgrade_checksum_plugin
5f21e1e is described below

commit 5f21e1e7da64e45f315250585782c2f67f5f0d1a
Author: Kevin Ratnasekera <djkevi...@yahoo.com>
AuthorDate: Mon May 6 20:03:07 2019 +0530

    Add checksum plugin to release profile
---
 pom.xml | 32 +++++++++++++++++++++++++++++---
 1 file changed, 29 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 92e2309..b0c977c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -733,9 +733,35 @@
             </executions>
           </plugin>
           <plugin>
-            <groupId>net.ju-n.maven.plugins</groupId>
+            <groupId>net.nicoulaj.maven.plugins</groupId>
             <artifactId>checksum-maven-plugin</artifactId>
             <version>${checksum-maven-plugin.version}</version>
+            <executions>
+              <execution>
+                <id>source-release-checksum</id>
+                <goals>
+                  <goal>files</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <algorithms>
+                <algorithm>MD5</algorithm>
+                <algorithm>SHA-1</algorithm>
+                <algorithm>SHA-512</algorithm>
+              </algorithms>
+              <csvSummary>false</csvSummary>
+              <fileSets>
+                <fileSet>
+                  <directory>${project.build.directory}</directory>
+                  <includes>
+                    
<include>${project.artifactId}-${project.version}-source-release.zip</include>
+                    
<include>${project.artifactId}-${project.version}-source-release.tar*</include>
+                  </includes>
+                </fileSet>
+              </fileSets>
+              <failIfNoFiles>false</failIfNoFiles><!-- usually, no file to do 
checksum: don't consider error -->
+            </configuration>
           </plugin>
         </plugins>
       </build>
@@ -836,9 +862,9 @@
     <maven-javadoc-plugin.version>2.8.1</maven-javadoc-plugin.version>
     <maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
     <apache-rat-plugin.version>0.8</apache-rat-plugin.version>
-    <maven-assembly-plugin.version>2.2.2</maven-assembly-plugin.version>
+    <maven-assembly-plugin.version>2.5.4</maven-assembly-plugin.version>
     <maven-deploy-plugin.version>2.5</maven-deploy-plugin.version>
-    <checksum-maven-plugin.version>1.0.1</checksum-maven-plugin.version>
+    <checksum-maven-plugin.version>1.7</checksum-maven-plugin.version>
     <maven-clean-plugin.version>2.5</maven-clean-plugin.version>
 
     <!-- Pig Dependencies -->

Reply via email to