You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/03/16 21:45:37 UTC

[incubator-pulsar] branch master updated: Copy only needed files for building Python Instance (#1400)

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

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 4ac71d4  Copy only needed files for building Python Instance (#1400)
4ac71d4 is described below

commit 4ac71d4b275a9b6e95f81946564f0315e5f340a1
Author: Sanjeev Kulkarni <sa...@gmail.com>
AuthorDate: Fri Mar 16 14:45:35 2018 -0700

    Copy only needed files for building Python Instance (#1400)
---
 pulsar-functions/runtime/pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pulsar-functions/runtime/pom.xml b/pulsar-functions/runtime/pom.xml
index 4b2f16f..15ecd25 100644
--- a/pulsar-functions/runtime/pom.xml
+++ b/pulsar-functions/runtime/pom.xml
@@ -71,7 +71,9 @@
                 <echo>building python instance</echo>
                 <mkdir dir="${basedir}/target/python-instance"/>
                 <copydir src="${basedir}/../instance/src/main/python" dest="${basedir}/target/python-instance"/>
-                <copydir src="${basedir}/../../pulsar-client-cpp/python" dest="${basedir}/target/python-instance"/>
+                <copy file="${basedir}/../../pulsar-client-cpp/python/pulsar.py" tofile="${basedir}/target/python-instance/pulsar.py"/>
+                <mkdir dir="${basedir}/target/python-instance/functions"/>
+                <copydir src="${basedir}/../../pulsar-client-cpp/python/functions" dest="${basedir}/target/python-instance/functions"/>
               </tasks>
             </configuration>
           </execution>

-- 
To stop receiving notification emails like this one, please contact
mmerli@apache.org.