Index: BUILD.txt =================================================================== RCS file: /home/cvspublic/jakarta-lucene/BUILD.txt,v retrieving revision 1.6 diff -u -r1.6 BUILD.txt --- BUILD.txt 11 Jun 2003 17:43:47 -0000 1.6 +++ BUILD.txt 13 Jun 2003 02:55:32 -0000 @@ -86,19 +86,15 @@ http://www.experimentalstuff.com/Technologies/JavaCC/ Follow the download links and download the zip file to a temporary -location on your file system. Unzip the file and run the large class file -in the directory. On windows, use this command from the temp directory: +location on your file system. Unzip the file to the location +of your choice. (Note that JavaCC 3.0 no longer uses an installer) - java -cp . JavaCC2_1 - -This will launch a Java GUI installer. There is also a command line -installer available, and the installation class will give you those -directions. After JavaCC is installed, edit your build properties +After JavaCC is installed, edit your build properties (as in step 2), and add the line - javacc.home=/javacc/bin + javacc.home=/javacc -where this points to the bin directory of your javacc installation. +where this points to the directory of your javacc installation. Step 4) Run ant Index: build.xml =================================================================== RCS file: /home/cvspublic/jakarta-lucene/build.xml,v retrieving revision 1.36 diff -u -r1.36 build.xml --- build.xml 11 Jun 2003 17:43:47 -0000 1.36 +++ build.xml 13 Jun 2003 02:55:33 -0000 @@ -52,8 +52,8 @@ @@ -99,19 +102,19 @@ - + - - @@ -202,19 +205,19 @@ - + - - @@ -239,9 +242,9 @@ - @@ -629,4 +632,27 @@ --> + + + + + + + + + + + + + + + Index: default.properties =================================================================== RCS file: /home/cvspublic/jakarta-lucene/default.properties,v retrieving revision 1.14 diff -u -r1.14 default.properties --- default.properties 20 Mar 2003 18:15:04 -0000 1.14 +++ default.properties 13 Jun 2003 02:55:33 -0000 @@ -20,6 +20,7 @@ demo.src = ./src/demo demo.jsp = ./src/jsp test.src = ./src/test +anttask.src = ./src/anttask docs.dir = ./docs dist.dir=${final.name} dist-src.dir = ${final.name}-src @@ -52,14 +53,17 @@ build.test = ${build.dir}/test build.test.classes = ${build.test}/classes +build.anttask = ${build.dir}/anttask +build.anttask.classes = ${build.anttask}/classes + junit.src = ${basedir}/src/test junit.classes = ${build.dir}/unit-classes junit.reports = ${build.dir}/unit-reports # Home directory of JavaCC javacc.home = . -javacc.zip.dir = ${javacc.home}/lib -javacc.zip = ${javacc.zip.dir}/JavaCC.zip +javacc.lib.dir = ${javacc.home}/bin/lib +javacc.jar = ${javacc.lib.dir}/javacc.jar # Home directory of jakarta-site2 jakarta.site2.home = ../jakarta-site2