Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://issues.apache.org/jira/browse/HIVEMIND-31 Here is an overview of the issue: --------------------------------------------------------------------- Key: HIVEMIND-31 Summary: Typo in jar-module.xml causes broken build if junit library is missing Type: Bug Status: Open Priority: Major Project: HiveMind Components: framework Assignee: Howard M. Lewis Ship Reporter: Johan Lindquist Created: Thu, 29 Jul 2004 2:45 AM Updated: Thu, 29 Jul 2004 2:45 AM Environment: Win XP, JDK 1.4.2, ant 1.6.2 Description: If the current ant installation is missing the correct version of the junit library, the build will attempt to delete any existing junit libs. The fileset specified for the delete task in the jar-module.xml has "include" instead of "includes" which breaks ant. See patch below. hivebuild/jar-module.xml ----------------8<--------------------------------------------- 168c168 < <fileset dir="${ant.home}/lib" include="junit-*.jar"/> --- > <fileset dir="${ant.home}/lib" includes="junit-*.jar"/> -----------------8<--------------------------------------------- --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
