The exception states that you do not have the xdoclet ojb module in the
classpath which is cp (as referenced in the taskdef).
The first pathelement in the path definition probably does not work. I
think you want to add the CLASSPATH variable to the path. This can be
accomplished by adding the environment like this:

    <property environment="env"/>
    ...
    <path id="cp">
        <pathelement path="${env.CLASSPATH}"/>
        ....
    </path>

Tom



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to