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

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


The following commit(s) were added to refs/heads/master by this push:
     new 10e7be0  ATLAS-3242: Package impala hook libraries in atlas-distro 
module
10e7be0 is described below

commit 10e7be0fca1be50d750f484ecb0e23a35bcdf24b
Author: Sarath Subramanian <sar...@apache.org>
AuthorDate: Tue May 28 21:50:01 2019 -0700

    ATLAS-3242: Package impala hook libraries in atlas-distro module
---
 addons/impala-bridge/pom.xml                       |  5 +++
 distro/pom.xml                                     |  1 +
 .../main/assemblies/atlas-impala-hook-package.xml  | 40 ++++++++++++++++++++++
 3 files changed, 46 insertions(+)

diff --git a/addons/impala-bridge/pom.xml b/addons/impala-bridge/pom.xml
index a133b34..02d9f18 100644
--- a/addons/impala-bridge/pom.xml
+++ b/addons/impala-bridge/pom.xml
@@ -369,6 +369,11 @@
                   <artifactItems>
                     <artifactItem>
                       <groupId>${project.groupId}</groupId>
+                      <artifactId>impala-bridge-shim</artifactId>
+                      <version>${project.version}</version>
+                    </artifactItem>
+                    <artifactItem>
+                      <groupId>${project.groupId}</groupId>
                       <artifactId>atlas-plugin-classloader</artifactId>
                       <version>${project.version}</version>
                     </artifactItem>
diff --git a/distro/pom.xml b/distro/pom.xml
index e2225b8..51eb27b 100644
--- a/distro/pom.xml
+++ b/distro/pom.xml
@@ -128,6 +128,7 @@ atlas.graph.index.search.solr.wait-searcher=true
                                     <descriptors>
                                         
<descriptor>src/main/assemblies/atlas-hbase-hook-package.xml</descriptor>
                                         
<descriptor>src/main/assemblies/atlas-hive-hook-package.xml</descriptor>
+                                        
<descriptor>src/main/assemblies/atlas-impala-hook-package.xml</descriptor>
                                         
<descriptor>src/main/assemblies/atlas-falcon-hook-package.xml</descriptor>
                                         
<descriptor>src/main/assemblies/atlas-sqoop-hook-package.xml</descriptor>
                                         
<descriptor>src/main/assemblies/atlas-storm-hook-package.xml</descriptor>
diff --git a/distro/src/main/assemblies/atlas-impala-hook-package.xml 
b/distro/src/main/assemblies/atlas-impala-hook-package.xml
new file mode 100644
index 0000000..7e6177e
--- /dev/null
+++ b/distro/src/main/assemblies/atlas-impala-hook-package.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+<assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+          
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2";
+          
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
 http://maven.apache.org/xsd/assembly-1.1.2.xsd";>
+    <formats>
+        <format>tar.gz</format>
+        <format>dir</format>
+    </formats>
+    <id>impala-hook</id>
+    <baseDirectory>apache-atlas-impala-hook-${project.version}</baseDirectory>
+    <fileSets>
+        <fileSet>
+            
<directory>../addons/impala-bridge/target/dependency/bridge</directory>
+            <outputDirectory>bridge</outputDirectory>
+        </fileSet>
+
+        <fileSet>
+            
<directory>../addons/impala-bridge/target/dependency/hook</directory>
+            <outputDirectory>hook</outputDirectory>
+        </fileSet>
+
+    </fileSets>
+</assembly>
\ No newline at end of file

Reply via email to