On Wed, 2005-05-11 at 16:46, Thomas Mader wrote:
> Hi I'm a newbie and my *.hbm.xml files are not generated 
...
>             <fileset dir=".">
>                 <include name="./src/core/*.java"/>
>             </fileset>
...
> package core;

There's your problem.  Try
    <fileset dir="./src">
        <include name="core/*.java"/>
    </fileset>
instead (or even name="**/*.java", so you don't have to change it if you
add more packages).

The fileset needs to be rooted at the top of the package hierarchy, as
the parser skips any files which it thinks are in the wrong package
(based on their location).  So, since your classes aren't
src.core.OurNode etc, they get ignored...


Andrew.
-- 



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
_______________________________________________
xdoclet-user mailing list
xdoclet-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to