[eml-dev] [Bug 2835] - Data Manager Library: Run-time errors involving Xalan classes
bugzilla-daemon@ecoinformatics.org
bugzilla-daemon at ecoinformatics.org
Fri May 18 07:25:49 PDT 2007
http://bugzilla.ecoinformatics.org/show_bug.cgi?id=2835
dcosta at lternet.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Comment #1 from dcosta at lternet.edu 2007-05-18 07:25 -------
The bug was in build.xml. It has been resolved with the following update:
costa 07/05/18 07:20:13
Modified: . build.xml
Log:
Bug fix for bug #2835. The 'excludes' directive:
<jar jarfile="${build.dir}/${datamanager.name}.jar"
basedir="${build.dest}"
excludes="**/**Test.class"
/>
was causing Xalan classes NodeTest.class and PredicatedNodeTest.class to be
excluded from the datamanager jar file. Modified this to:
<jar jarfile="${build.dir}/${datamanager.name}.jar"
basedir="${build.dest}"
excludes="org/ecoinformatics/datamanager/**/**Test.class"
/>
so that only test classes specific to the datamanager packages are excluded
from the jar file.
Revision Changes Path
1.95 +3 -3 eml/build.xml
Index: build.xml
===================================================================
RCS file: /cvs/eml/build.xml,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- build.xml 7 Dec 2006 19:10:13 -0000 1.94
+++ build.xml 18 May 2007 14:20:13 -0000 1.95
@@ -15,8 +15,8 @@
For Details: http://knb.ecoinformatics.org/
'$Author: costa $'
- '$Date: 2006/12/07 19:10:13 $'
- '$Revision: 1.94 $'
+ '$Date: 2007/05/18 14:20:13 $'
+ '$Revision: 1.95 $'
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -560,7 +560,7 @@
todir="${build.dest}"/>
<jar jarfile="${build.dir}/${datamanager.name}.jar"
basedir="${build.dest}"
- excludes="**/**Test.class"
+ excludes="org/ecoinformatics/datamanager/**/**Test.class"
/>
</target>
More information about the Eml-dev
mailing list