You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by sr...@apache.org on 2013/09/30 16:41:52 UTC

[2/2] git commit: FALCON-132 assembly plugin for embedded does not generate client artifacts. Contributed by Venkatesh Seetharam

FALCON-132 assembly plugin for embedded does not generate client artifacts. Contributed by Venkatesh Seetharam


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

Branch: refs/heads/master
Commit: e86e1920ed3c53dba8cb193c22a4ea1753c053eb
Parents: 827d7a7
Author: srikanth.sundarrajan <sr...@inmobi.com>
Authored: Mon Sep 30 20:09:19 2013 +0530
Committer: srikanth.sundarrajan <sr...@inmobi.com>
Committed: Mon Sep 30 20:09:19 2013 +0530

----------------------------------------------------------------------
 CHANGES.txt                         |  3 +++
 src/main/assemblies/bin-package.xml | 10 ++++++++++
 2 files changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/e86e1920/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index d6866b3..f6c5278 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -11,6 +11,9 @@ Trunk (Unreleased)
     via Srikanth Sundarrajan)
 
   IMPROVEMENTS
+    FALCON-132 assembly plugin for embedded does not generate client
+    artifacts. (Venkatesh Seetharam via Srikanth Sundarrajan)
+
     FALCON-136 Upgrade to commons-codec 1.8. (Jean-Baptiste Onofre 
     via Srikanth Sundarrajan)
 

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/e86e1920/src/main/assemblies/bin-package.xml
----------------------------------------------------------------------
diff --git a/src/main/assemblies/bin-package.xml b/src/main/assemblies/bin-package.xml
index 92efad8..061ad19 100644
--- a/src/main/assemblies/bin-package.xml
+++ b/src/main/assemblies/bin-package.xml
@@ -34,6 +34,11 @@
         </fileSet>
 
         <fileSet>
+            <directory>client/target/dependency</directory>
+            <outputDirectory>client/lib</outputDirectory>
+        </fileSet>
+
+        <fileSet>
             <directory>docs/target/site</directory>
             <outputDirectory>docs</outputDirectory>
         </fileSet>
@@ -87,6 +92,11 @@
 
     <files>
         <file>
+            <source>client/target/falcon-client-${project.version}.jar</source>
+            <outputDirectory>client/lib</outputDirectory>
+        </file>
+
+        <file>
             <source>webapp/target/falcon-webapp-${project.version}.war</source>
             <outputDirectory>server/webapp</outputDirectory>
             <destName>falcon.war</destName>