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 33b46e0  Add auto generation of checksums to file extensions
     new 15a8426  Merge pull request #169 from 
djkevincr/fix_issues_with_checksum_plugin
33b46e0 is described below

commit 33b46e0dc1c6b3193cf53bd46ebcf58a49f5db5a
Author: Kevin Ratnasekera <djkevi...@yahoo.com>
AuthorDate: Mon May 6 23:26:24 2019 +0530

    Add auto generation of checksums to file extensions
---
 pom.xml | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index b0c977c..220a4cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -755,12 +755,14 @@
                 <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>
+                    <include>*.zip</include>
+                    <include>*.tar.gz</include>
+                    <include>*.jar</include>
+                    <include>*.pom</include>
                   </includes>
                 </fileSet>
               </fileSets>
-              <failIfNoFiles>false</failIfNoFiles><!-- usually, no file to do 
checksum: don't consider error -->
+              <failIfNoFiles>false</failIfNoFiles>
             </configuration>
           </plugin>
         </plugins>

Reply via email to