You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2011/11/28 09:18:39 UTC

svn commit: r1207010 - /lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml

Author: shaie
Date: Mon Nov 28 08:18:38 2011
New Revision: 1207010

URL: http://svn.apache.org/viewvc?rev=1207010&view=rev
Log:
update facet/build.xml#jar-examples to include the source files as well

Modified:
    lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml

Modified: lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml?rev=1207010&r1=1207009&r2=1207010&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml (original)
+++ lucene/dev/branches/branch_3x/lucene/contrib/facet/build.xml Mon Nov 28 08:18:38 2011
@@ -52,7 +52,9 @@
   <target name="jar-examples" depends="compile-examples">
     <jarify basedir="${build.dir}/classes/examples" 
           destfile="${build.dir}/${final.name}-examples.jar" 
-          title="Lucene Search Engine: ${ant.project.name}-examples" />
+          title="Lucene Search Engine: ${ant.project.name}-examples">
+      <fileset dir="src/examples" />
+    </jarify>
   </target>
     
   <target name="compile-core" depends="common.compile-core,compile-examples" description="Compiles facet classes" />