You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by ha...@apache.org on 2011/06/01 18:40:12 UTC

svn commit: r1130259 - in /incubator/hcatalog/trunk: CHANGES.txt build.xml

Author: hashutosh
Date: Wed Jun  1 18:40:11 2011
New Revision: 1130259

URL: http://svn.apache.org/viewvc?rev=1130259&view=rev
Log:
HCATALOG-34: Add ant target for server side classes

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/build.xml

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1130259&r1=1130258&r2=1130259&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Wed Jun  1 18:40:11 2011
@@ -13,6 +13,8 @@ Trunk (unreleased changes)
     
   IMPROVEMENTS
 
+    HCAT-34. Add ant target for server side classes (hashutosh)
+    
     HCAT-33. minor changes to the test target in build.xml (macyang via hashutosh)
  
     HCAT-30. Need changes.txt (Jakob Homan via hashutosh)

Modified: incubator/hcatalog/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/build.xml?rev=1130259&r1=1130258&r2=1130259&view=diff
==============================================================================
--- incubator/hcatalog/trunk/build.xml (original)
+++ incubator/hcatalog/trunk/build.xml Wed Jun  1 18:40:11 2011
@@ -236,6 +236,19 @@
     </jar>
   </target>
 
+  <!--
+  ================================================================================
+  Build server side code, mainly listener.
+  ================================================================================
+  -->
+  <!-- Build the server side jar -->
+  <target name="server-extensions" depends="compile-src">
+     <jar jarfile="${build.dir}/${ant.project.name}/${final.name}-server-extensions.jar" basedir="${build.classes}"
+ 	  includes="org/apache/hcatalog/listener/**,org/apache/hcatalog/metadata/**">
+ </jar>
+  </target>
+
+
  <!--
   ================================================================================
   Datanucleus Section