>There was so much stuff in there using extensive <copy> excludes, building >an EAR, and more that clutter up your example. If you can build me a .zip >file that includes *everything* (including the XDoclet JAR's, simplified >build files, everything except Ant itself) I would be happy to run it >locally. As long as it does not involve any setup time for me, I would try >it out and see about troubleshooting it.
Thanks Erik thats a very generous offer. >Whatever problem is going on is something quite simple for sure It always is ;) I went through every sub build and found a number of violations of the checks detailed in my last email, after fixing these and the way the class path was setup the forced code generation stopped, here is a break down: I found two java files in a core module (other sub builds depended on it) that had an incorrect package declaration, i.e. the java files were under org/zapto/util but the package declaration was org.zapto.string.util this resulted in the files being complied and jared with every build. XDoclet would then find the generated jar file in the class path and force generation of the source files that depended on it. I found a jar task with update="true" creating a jar and placing it in the class path with every build. I found two copy tasks with overwrite="true" that where used to copy MANIFEST files. These also induced code generation by virtue of placing newly created jar files into the class path. Finally I charged the way class path was setup. I made it more selective rather than including all the jar files in the shared lib directory. Thanks for your patience and all the help Erik. Happy new year. Hoos ------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
