Mailing List Archive

cvs commit: jakarta-lucene build.properties build.xml
jvanzyl 01/09/18 10:04:21

Modified: . build.properties build.xml
Log:
- getting the "demo" target to work.

the build.properties is a bit of a mess. i'll get the test target(s)
working than i'll clean it up.

Revision Changes Path
1.2 +5 -0 jakarta-lucene/build.properties

Index: build.properties
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- build.properties 2001/09/18 16:30:35 1.1
+++ build.properties 2001/09/18 17:04:21 1.2
@@ -1,3 +1,6 @@
+# ---------------------------------------------------------
+# L U C E N E B U I L D P R O P E R T I E S
+# ---------------------------------------------------------
name=lucene
Name=Lucene
version=1.0.1-dev
@@ -11,6 +14,7 @@

src.dir = ./src/java
demo.dir = ./src/demo
+demo.src = ./src/demo
docs.dir = ./doc
lib.dir = ./lib
test.dir = ./src/test
@@ -25,6 +29,7 @@
build.javadocs = ${build.dir}/docs/api
build.src = ${build.dir}/src
build.demo = ${build.dir}/demo
+build.src.demo = ${build.dir}/demo/src
build.test = ${build.dir}/test

junit.src = ${basedir}/test/unit



1.3 +7 -6 jakarta-lucene/build.xml

Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.xml 2001/09/18 16:31:24 1.2
+++ build.xml 2001/09/18 17:04:21 1.3
@@ -120,17 +120,18 @@
<!-- ================================================================== -->
<target name="demo" depends="compile" if="javacc.present">
<mkdir dir="${build.demo}"/>
- <copy todir="${build.demo}">
- <fileset dir="${src.dir}">
- <include name="demo/**/*.java"/>
- <include name="demo/**/*.jj"/>
+
+ <copy todir="${build.demo}/src">
+ <fileset dir="${demo.src}">
+ <include name="**/*.java"/>
+ <include name="**/*.jj"/>
</fileset>
</copy>

<javacc
- target="${demo.dir}/HTMLParser/HTMLParser.jj"
+ target="${build.src.demo}/org/apache/lucene/HTMLParser/HTMLParser.jj"
javacchome="${javacc.zip.dir}"
- outputdirectory="${build.demo}/demo/HTMLParser"
+ outputdirectory="${build.src.demo}/org/apache/lucene/HTMLParser"
/>

<javac
cvs commit: jakarta-lucene build.properties build.xml [ In reply to ]
jvanzyl 01/09/18 18:09:28

Modified: . build.properties build.xml
Log:
- fixing the "package" target so that the package-zip and package-tgz
targets will work.

Revision Changes Path
1.6 +1 -0 jakarta-lucene/build.properties

Index: build.properties
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.properties,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.properties 2001/09/19 01:03:54 1.5
+++ build.properties 2001/09/19 01:09:28 1.6
@@ -18,6 +18,7 @@
docs.dir = ./docs
lib.dir = ./lib
dist.dir=${final.name}
+basedir = .

# javadoc packages
packages=org.apache.lucene.*



1.7 +0 -2 jakarta-lucene/build.xml

Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- build.xml 2001/09/18 17:49:23 1.6
+++ build.xml 2001/09/19 01:09:28 1.7
@@ -292,8 +292,6 @@
<mkdir dir="${dist.dir}/docs"/>
<mkdir dir="${dist.dir}/docs/api"/>

- <copy file="${basedir}/COPYING.txt" todir="${dist.dir}"/>
- <copy file="${basedir}/README.txt" todir="${dist.dir}"/>
<copy todir="${dist.dir}/docs">
<fileset dir="${docs.dir}"/>
</copy>
cvs commit: jakarta-lucene build.properties build.xml [ In reply to ]
cutting 01/09/25 12:07:06

Modified: . build.properties build.xml
Log:
Changed javadoc to not include private classes, to include links to JDK docs, and to have correct copyright.

Revision Changes Path
1.8 +3 -0 jakarta-lucene/build.properties

Index: build.properties
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.properties,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.properties 2001/09/19 01:12:59 1.7
+++ build.properties 2001/09/25 19:07:06 1.8
@@ -22,6 +22,9 @@
# javadoc packages
packages=org.apache.lucene.*

+# javadoc link
+javadoc.link=http://java.sun.com/products/jdk/1.3/docs/api/
+
build.dir = ./bin
build.classes = ${build.dir}/classes
build.lib = ${build.dir}/lib



1.9 +2 -2 jakarta-lucene/build.xml

Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-lucene/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 2001/09/24 22:33:21 1.8
+++ build.xml 2001/09/25 19:07:06 1.9
@@ -271,12 +271,12 @@
packagenames="${packages}"
destdir="${build.javadocs}"
author="true"
- private="true"
version="true"
use="true"
+ link="${javadoc.link}"
windowtitle="${Name} ${version} API"
doctitle="${Name} ${version} API"
- bottom="Copyright &amp;copy; ${year} Lucene.com. All Rights Reserved."
+ bottom="Copyright &amp;copy; ${year} Apache Software Foundation. All Rights Reserved."
>
<classpath refid="classpath"/>
</javadoc>