From: SourceForge.net <no...@so...> - 2003-12-10 22:34:42
|
Bugs item #857904, was opened at 2003-12-10 14:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=391879&aid=857904&group_id=27895 Category: Ant Build File Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Ant not included in 0.9.0a1 source distro Initial Comment: Ant, which is required for the build, is not included in the source distribution for version 0.9.0a1. My impression from the docs was that all required utilities were to be included. I discovered this when invoking test.bat. In my case, I happened to have a recent ant install elsewhere, so I modified test.bat to invoke my own ant, using my system-wide definition of ant_home. In this case, I was able to compile successfully. But there was a follow-on problem, namely that ant was looking in its own directory for junit.jar so as to do the required unit tests, and my own ant install did not have junit -- but this was easily remedied by copying junit.jar from the tm4j lib directory into my own ant lib directory, and then it was happy. Here is my doctored up test.bat, which would work for anyone that has their own ant installation: @echo off REM A simple batch file to run the standard test of the in-memory back-end set classpath=.;%ANT_HOME%lib;%TM4J_HOME%lib ant.bat -Dbackends=memory tm4j-test ant.bat -Dbackends=memory tm4j-index-test I made similar changes to my build.bat as a work- around. Probably should put the required ant.jar back into the source distribution. Jim Newhouse jne...@at... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=391879&aid=857904&group_id=27895 |