Hi,

I'm trying to use XDoclet to generate a TLD file for me.  It's
generating a TLD file, but not including any tags.  I have zillions of
tags, but for testing purposes, I added a jsp.tag attribute to one of
them, which is "com.mindiq.mindiqweb.taglib.BookmarkIDTag".  My ant
script is below.  Any ideas why this isn't working?  I'm sure it's
something stupid...

<?xml version="1.0" encoding="UTF-8"?>
<project name="MindIQweb Server" default="xdoclet">
    <property name="xdoclet.root.dir" value="C:/Java/xdoclet-1.2"/>

    <path id="xdoclet.class.path">
        <fileset dir="${xdoclet.root.dir}">
            <include name="**/*.jar"/>
        </fileset>
    </path>

    <target name="xdoclet">
        <taskdef
            name="webdoclet"
            classname="xdoclet.modules.web.WebDocletTask"
            classpathref="xdoclet.class.path"
            />

        <webdoclet
            destdir="testoutput"
            verbose="true"
            >

            <fileset dir="WEB-INF/classes">
                <include name="**/*Tag.java"/>
            </fileset>

            <jsptaglib
                jspversion="1.2"
                shortname="miqweb"
                filename="miqweb_1_0.tld"
                validateXml="false"
                />
        </webdoclet>
    </target>
</project>

-- 
www.designacourse.com
The Easiest Way to Train Anyone... Anywhere.

Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation



-------------------------------------------------------
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to