You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by es...@apache.org on 2017/11/08 05:56:48 UTC

incubator-hawq git commit: HAWQ-1496. Add DISCLAIMER, LICENSE and NOTICE files into PXF rpm.

Repository: incubator-hawq
Updated Branches:
  refs/heads/master 1aafa0c88 -> 8d18e6b25


HAWQ-1496. Add DISCLAIMER, LICENSE and NOTICE files into PXF rpm.

The files will be installed into /opt/pxf-${project.version} directory.


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/8d18e6b2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/8d18e6b2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/8d18e6b2

Branch: refs/heads/master
Commit: 8d18e6b25820618599946035c5b9f83f8d728c30
Parents: 1aafa0c
Author: Ed Espino <ee...@pivotal.io>
Authored: Wed Oct 4 15:06:06 2017 -0700
Committer: Ed Espino <ee...@pivotal.io>
Committed: Tue Nov 7 21:21:38 2017 -0800

----------------------------------------------------------------------
 pxf/build.gradle | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/8d18e6b2/pxf/build.gradle
----------------------------------------------------------------------
diff --git a/pxf/build.gradle b/pxf/build.gradle
index 78c5249..706caa9 100644
--- a/pxf/build.gradle
+++ b/pxf/build.gradle
@@ -336,6 +336,18 @@ project('pxf') {
         link('/etc/pxf', "/etc/pxf-${project.version}")
         link('/opt/pxf', "/opt/pxf-${project.version}")
         link('/etc/init.d/pxf-service', "/opt/pxf/pxf-service")
+
+        from('../resources/META-INF/DISCLAIMER') {
+            into "/opt/pxf-${project.version}"
+        }
+
+        from('../resources/META-INF/LICENSE') {
+            into "/opt/pxf-${project.version}"
+        }
+
+        from('../resources/META-INF/NOTICE') {
+            into "/opt/pxf-${project.version}"
+        }
     }
 }