jefft 02/04/13 03:04:33
Modified: . README.txt build.xml
all build.xml
altrmi build.xml
baxter build.xml
bzip2 build.xml
cache build.xml
cli build.xml
collections build.xml
component build.xml
concurrent build.xml
datasource build.xml
event build.xml
extension build.xml
fortress build.xml
i18n build.xml
instrument build.xml
instrument-client build.xml
instrument-manager build.xml
io build.xml
logger build.xml
monitor build.xml
naming build.xml
pool build.xml
sourceresolve build.xml
tar build.xml
template-product build.xml
testcase build.xml
thread build.xml
threadcontext build.xml
util build.xml
xmlbundle build.xml
zip build.xml
Log:
- Make avalon-excalibur.jar really contain all classes historically present.
- Prefix some paths in build.xml's with ${basedir}, to prevent weird bugs when
invoked from the root build.xml
- Exclude package.html from jars
Revision Changes Path
1.7 +6 -0 jakarta-avalon-excalibur/README.txt
Index: README.txt
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/README.txt,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- README.txt 12 Apr 2002 01:48:28 -0000 1.6
+++ README.txt 13 Apr 2002 10:04:31 -0000 1.7
@@ -29,12 +29,18 @@
following jars:
all/build/lib/avalon-excalibur.jar
+ datasource/build/lib/excalibur-datasource-1.0.jar
cli/build/lib/excalibur-cli-1.0.jar
collections/build/lib/excalibur-collections-1.0.jar
concurrent/build/lib/excalibur-concurrent-1.0.jar
+ component/build/lib/excalibur-component-1.0.jar
i18n/build/lib/excalibur-i18n-1.0.jar
io/build/lib/excalibur-io-1.0.jar
naming/build/lib/excalibur-naming-1.0.jar
+ logger/build/lib/excalibur-logger-1.0.jar
+ pool/build/lib/excalibur-pool-1.0.jar
+ testcase/build/lib/excalibur-testcase-1.0.jar
+ util/build/lib/excalibur-util-1.0.jar
in addition, versions post-4.1 have a dependency on:
1.150 +15 -2 jakarta-avalon-excalibur/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/build.xml,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- build.xml 11 Apr 2002 23:34:46 -0000 1.149
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.150
@@ -133,24 +133,36 @@
<!-- Generate one jar functionally equivalent to the old
avalon-excalibur.jar -->
<target name="jar" description="Generates avalon-excalibur.jar">
+ <ant dir="datasource" target="jar"/>
<ant dir="all" target="all"/>
<ant dir="cli" target="jar"/>
+ <ant dir="component" target="jar"/>
<ant dir="collections" target="jar"/>
<ant dir="concurrent" target="jar"/>
<ant dir="i18n" target="jar"/>
<ant dir="io" target="jar"/>
<ant dir="naming" target="jar"/>
+ <ant dir="logger" target="jar"/>
+ <ant dir="pool" target="jar"/>
+ <ant dir="testcase" target="jar"/>
+ <ant dir="util" target="jar"/>
<ant dir="instrument" target="jar"/>
<jlink compress="false" outfile="avalon-excalibur-tmp.jar">
<mergefiles>
<fileset dir=".">
+ <include name="datasource/build/lib/*.jar"/>
<include name="all/build/lib/excalibur-core.jar"/>
<include name="cli/build/lib/*.jar"/>
+ <include name="component/build/lib/*.jar"/>
<include name="collections/build/lib/*.jar"/>
<include name="concurrent/build/lib/*.jar"/>
<include name="i18n/build/lib/*.jar"/>
<include name="io/build/lib/*.jar"/>
<include name="naming/build/lib/*.jar"/>
+ <include name="logger/build/lib/*.jar"/>
+ <include name="pool/build/lib/*.jar"/>
+ <include name="testcase/build/lib/*.jar"/>
+ <include name="util/build/lib/*.jar"/>
<include name="instrument/build/lib/*.jar"/>
</fileset>
</mergefiles>
@@ -201,6 +213,7 @@
<ant dir="naming" target="jar"/>
<ant dir="tar" target="jar"/>
<ant dir="zip" target="jar"/>
+ <ant dir="datasource" target="jar"/>
<jlink compress="false" outfile="excalibur-all-tmp.jar">
<mergefiles>
@@ -213,11 +226,11 @@
<jar jarfile="excalibur-all.jar" compress="true">
<zipfileset src="excalibur-all-tmp.jar" />
</jar>
- <delete file="excalibur-avalon-tmp.jar"/>
+ <delete file="excalibur-all-tmp.jar"/>
</target>
<!-- Generate all docs -->
- <target name="docs" description="Generate all the docs">
+ <target name="docs" description="Generate all the docs">
<!--<ant dir="fortress" target="docs"/> -->
<!--<ant dir="instrument" target="docs"/> -->
<!--<ant dir="instrument-client" target="docs"/--> <!-- depends on
instrument-manager -->
1.139 +5 -4 jakarta-avalon-excalibur/all/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/all/build.xml,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- build.xml 13 Apr 2002 08:30:05 -0000 1.138
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.139
@@ -23,11 +23,11 @@
<project name="Avalon Excalibur" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -283,6 +283,7 @@
<copy todir="${build.testclasses}">
<fileset dir="${build.testsrc}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
<javac srcdir="${build.testsrc}"
1.13 +6 -4 jakarta-avalon-excalibur/altrmi/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/altrmi/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- build.xml 13 Apr 2002 01:07:30 -0000 1.12
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.13
@@ -3,11 +3,11 @@
<project name="Excalibur AltRMI" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -63,6 +63,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -87,6 +88,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.15 +6 -4 jakarta-avalon-excalibur/baxter/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/baxter/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- build.xml 13 Apr 2002 01:07:30 -0000 1.14
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.15
@@ -3,11 +3,11 @@
<project name="Excalibur Baxter" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -66,6 +66,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -90,6 +91,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.15 +6 -4 jakarta-avalon-excalibur/bzip2/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/bzip2/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- build.xml 13 Apr 2002 01:07:30 -0000 1.14
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.15
@@ -3,11 +3,11 @@
<project name="Excalibur Bzip2" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.24 +6 -4 jakarta-avalon-excalibur/cache/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/cache/build.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- build.xml 13 Apr 2002 01:07:30 -0000 1.23
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.24
@@ -3,11 +3,11 @@
<project name="Excalibur Cache" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -62,6 +62,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -86,6 +87,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.35 +6 -4 jakarta-avalon-excalibur/cli/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/cli/build.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- build.xml 13 Apr 2002 01:07:30 -0000 1.34
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.35
@@ -3,11 +3,11 @@
<project name="Excalibur CLI" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.13 +6 -4 jakarta-avalon-excalibur/collections/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/collections/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- build.xml 13 Apr 2002 01:07:30 -0000 1.12
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.13
@@ -3,11 +3,11 @@
<project name="Excalibur Collections" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.11 +6 -4 jakarta-avalon-excalibur/component/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/component/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 13 Apr 2002 01:29:34 -0000 1.10
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.11
@@ -3,11 +3,11 @@
<project name="Excalibur Component" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -78,6 +78,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -102,6 +103,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.13 +6 -4 jakarta-avalon-excalibur/concurrent/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/concurrent/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- build.xml 13 Apr 2002 01:07:31 -0000 1.12
+++ build.xml 13 Apr 2002 10:04:31 -0000 1.13
@@ -3,11 +3,11 @@
<project name="Excalibur Concurrent" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.10 +6 -4 jakarta-avalon-excalibur/datasource/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/datasource/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xml 13 Apr 2002 08:30:05 -0000 1.9
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.10
@@ -3,11 +3,11 @@
<project name="Excalibur Datasource" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -145,6 +145,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -185,6 +186,7 @@
<copy todir="${build.testclasses}">
<fileset dir="${build.testsrc}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.17 +6 -4 jakarta-avalon-excalibur/event/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/event/build.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- build.xml 13 Apr 2002 01:07:31 -0000 1.16
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.17
@@ -3,11 +3,11 @@
<project name="Excalibur Event" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -77,6 +77,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -101,6 +102,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.39 +6 -4 jakarta-avalon-excalibur/extension/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/extension/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- build.xml 13 Apr 2002 01:07:31 -0000 1.38
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.39
@@ -3,11 +3,11 @@
<project name="Excalibur Extension" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.8 +6 -4 jakarta-avalon-excalibur/fortress/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/fortress/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 13 Apr 2002 01:39:56 -0000 1.7
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.8
@@ -3,11 +3,11 @@
<project name="Excalibur template" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -85,6 +85,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -109,6 +110,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.37 +6 -4 jakarta-avalon-excalibur/i18n/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/i18n/build.xml,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- build.xml 13 Apr 2002 01:07:31 -0000 1.36
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.37
@@ -3,11 +3,11 @@
<project name="Excalibur i18n" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.15 +5 -4 jakarta-avalon-excalibur/instrument/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/instrument/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- build.xml 13 Apr 2002 01:07:31 -0000 1.14
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.15
@@ -3,11 +3,11 @@
<project name="Excalibur Instrument" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.21 +6 -4 jakarta-avalon-excalibur/instrument-client/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/instrument-client/build.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- build.xml 13 Apr 2002 01:07:31 -0000 1.20
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.21
@@ -3,11 +3,11 @@
<project name="Excalibur Instrument Client" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -76,6 +76,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -100,6 +101,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.20 +6 -4 jakarta-avalon-excalibur/instrument-manager/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/instrument-manager/build.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- build.xml 13 Apr 2002 01:07:31 -0000 1.19
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.20
@@ -3,11 +3,11 @@
<project name="Excalibur Instrument Manager" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -93,6 +93,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -117,6 +118,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.39 +6 -4 jakarta-avalon-excalibur/io/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/io/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- build.xml 13 Apr 2002 01:07:31 -0000 1.38
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.39
@@ -3,11 +3,11 @@
<project name="Excalibur IO" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.9 +6 -4 jakarta-avalon-excalibur/logger/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/logger/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 13 Apr 2002 01:07:32 -0000 1.8
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.9
@@ -3,11 +3,11 @@
<project name="Excalibur Logger" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -97,6 +97,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -121,6 +122,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.8 +6 -4 jakarta-avalon-excalibur/monitor/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/monitor/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 13 Apr 2002 01:07:32 -0000 1.7
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.8
@@ -3,11 +3,11 @@
<project name="Excalibur Monitor" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.39 +6 -4 jakarta-avalon-excalibur/naming/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/naming/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- build.xml 13 Apr 2002 01:07:32 -0000 1.38
+++ build.xml 13 Apr 2002 10:04:32 -0000 1.39
@@ -3,11 +3,11 @@
<project name="Excalibur Naming" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -68,6 +68,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -92,6 +93,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.13 +6 -4 jakarta-avalon-excalibur/pool/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/pool/build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- build.xml 13 Apr 2002 01:07:32 -0000 1.12
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.13
@@ -3,11 +3,11 @@
<project name="Excalibur Pool" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -76,6 +76,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -100,6 +101,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.8 +6 -4 jakarta-avalon-excalibur/sourceresolve/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/sourceresolve/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 13 Apr 2002 01:07:32 -0000 1.7
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.8
@@ -3,11 +3,11 @@
<project name="Excalibur template" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.18 +6 -4 jakarta-avalon-excalibur/tar/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/tar/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- build.xml 13 Apr 2002 01:07:32 -0000 1.17
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.18
@@ -3,11 +3,11 @@
<project name="Excalibur tar" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.16 +6 -4 jakarta-avalon-excalibur/template-product/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/template-product/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 13 Apr 2002 01:07:32 -0000 1.15
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.16
@@ -3,11 +3,11 @@
<project name="Excalibur template" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.9 +6 -4 jakarta-avalon-excalibur/testcase/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/testcase/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 13 Apr 2002 01:07:32 -0000 1.8
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.9
@@ -3,11 +3,11 @@
<project name="Excalibur Pool" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -69,6 +69,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -93,6 +94,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.12 +6 -4 jakarta-avalon-excalibur/thread/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/thread/build.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- build.xml 13 Apr 2002 02:15:28 -0000 1.11
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.12
@@ -3,11 +3,11 @@
<project name="Excalibur Thread" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -71,6 +71,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -95,6 +96,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.10 +6 -4 jakarta-avalon-excalibur/threadcontext/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/threadcontext/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xml 13 Apr 2002 01:07:32 -0000 1.9
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.10
@@ -3,11 +3,11 @@
<project name="Excalibur ThreadContext" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.9 +6 -4 jakarta-avalon-excalibur/util/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/util/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- build.xml 13 Apr 2002 01:07:32 -0000 1.8
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.9
@@ -3,11 +3,11 @@
<project name="Excalibur Pool" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -63,6 +63,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -87,6 +88,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.8 +6 -4 jakarta-avalon-excalibur/xmlbundle/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/xmlbundle/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 13 Apr 2002 01:07:32 -0000 1.7
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.8
@@ -3,11 +3,11 @@
<project name="Excalibur XMLBundle" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
1.18 +6 -4 jakarta-avalon-excalibur/zip/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/zip/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- build.xml 13 Apr 2002 01:07:33 -0000 1.17
+++ build.xml 13 Apr 2002 10:04:33 -0000 1.18
@@ -3,11 +3,11 @@
<project name="Excalibur Zip" default="main" basedir=".">
<property file="${user.home}/build.properties"/>
- <property file="../ant.properties"/>
- <property file="ant.properties"/>
+ <property file="${basedir}/../ant.properties"/>
+ <property file="${basedir}/ant.properties"/>
<property file="${user.home}/.ant.properties"/>
- <property file="../default.properties"/>
- <property file="default.properties"/>
+ <property file="${basedir}/../default.properties"/>
+ <property file="${basedir}/default.properties"/>
<!-- Classpath for product -->
<path id="project.class.path">
@@ -61,6 +61,7 @@
<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
@@ -85,6 +86,7 @@
<copy todir="${build.classes}">
<fileset dir="${test.dir}">
<exclude name="**/*.java"/>
+ <exclude name="**/package.html"/>
</fileset>
</copy>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>