You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2010/05/28 14:49:23 UTC

svn commit: r949164 - in /lucene/dev/trunk/lucene: README.txt contrib/demo/build.xml

Author: rmuir
Date: Fri May 28 12:49:22 2010
New Revision: 949164

URL: http://svn.apache.org/viewvc?rev=949164&view=rev
Log:
include the demo war file in 'ant dist' and change the README to refer to the new location

Modified:
    lucene/dev/trunk/lucene/README.txt
    lucene/dev/trunk/lucene/contrib/demo/build.xml

Modified: lucene/dev/trunk/lucene/README.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/README.txt?rev=949164&r1=949163&r2=949164&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/README.txt (original)
+++ lucene/dev/trunk/lucene/README.txt Fri May 28 12:49:22 2010
@@ -17,10 +17,10 @@ FILES
 lucene-core-XX.jar
   The compiled lucene library.
 
-lucene-demos-XX.jar
+contrib/demo/lucene-demo-XX.jar
   The compiled simple example code.
 
-luceneweb.war
+contrib/demo/luceneweb.war
   The compiled simple example Web Application.
 
 contrib/*
@@ -40,5 +40,5 @@ docs/api/index.html
 src/java
   The Lucene source code.
 
-src/demo
+contrib/demo/src
   Some example code.

Modified: lucene/dev/trunk/lucene/contrib/demo/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/contrib/demo/build.xml?rev=949164&r1=949163&r2=949164&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/contrib/demo/build.xml (original)
+++ lucene/dev/trunk/lucene/contrib/demo/build.xml Fri May 28 12:49:22 2010
@@ -38,7 +38,7 @@
 	 <path refid="base.classpath"/>
   </path>
 
-  <target name="compile-core" depends="compile-analyzers-common, common.compile-core" />
+  <target name="compile-core" depends="compile-analyzers-common, common.compile-core, war-demo" />
 
   <target name="compile-analyzers-common" unless="analyzers-common.uptodate">
     <subant target="default">
@@ -46,7 +46,7 @@
     </subant>
   </target>
 
-  <target name="war-demo" depends="jar-core">
+  <target name="war-demo">
     <sequential>
       <build-manifest title="Lucene Search Engine: demos"/>
   	  <war destfile="${build.dir}/${demo.war.name}.war"