You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by so...@apache.org on 2019/04/11 21:14:44 UTC

[drill] branch master updated: DRILL-7165: Redundant Checksum calculating for ASC files

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 494c206  DRILL-7165: Redundant Checksum calculating for ASC files
494c206 is described below

commit 494c2060a385408f27185949e6899a9017b6b7ff
Author: Vitalii Diravka <vi...@apache.org>
AuthorDate: Thu Apr 11 00:06:55 2019 +0300

    DRILL-7165: Redundant Checksum calculating for ASC files
    
    - change 'checksum-maven-plugin' 'goal' - 'artifacts' -> 'files'
    - specify 'includes' in 'fileSet' for 'checksum-maven-plugin'
---
 pom.xml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 222af61..00e7728 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1792,7 +1792,7 @@
               <execution>
                 <id>source-release-checksum</id>
                 <goals>
-                  <goal>artifacts</goal>
+                  <goal>files</goal>
                 </goals>
               </execution>
             </executions>
@@ -1800,6 +1800,17 @@
               <algorithms>
                 <algorithm>SHA-512</algorithm>
               </algorithms>
+              <fileSets>
+                <!--Override fileSet from the Apache Parent POM-->
+                <fileSet>
+                  <directory>${project.build.directory}</directory>
+                  <includes>
+                    <include>apache-drill-${project.version}.tar.gz</include>
+                    <include>apache-drill-${project.version}-src.tar.gz</include>
+                    <include>apache-drill-${project.version}-src.zip</include>
+                  </includes>
+                </fileSet>
+              </fileSets>
             </configuration>
           </plugin>