Hi, I’m using Maven 1.0.2 and maven-xdoclet-plugin-1.2 and
I’m trying to generate two TLD files. I use the maven project.properties
snippet below. But it only generates the last TLD file (i.e. test-html.tld) and
not the first (i.e. content.tld). * If I cut out the declaration for content.tld (i.e. the
first part), it correctly generates content.tld. * If I cut out the declaration of test-html.tld (i.e. the
second part), it correctly generates test-html.tld. However, put together, it only generates test-html.tld. Any ideas why? Thanks for any help, Mark -------------------------------------- BEGIN :
project.properties ----------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- maven.xdoclet.webdoclet.deploymentdescriptor.0=false [EMAIL PROTECTED],@author,@todo maven.xdoclet.webdoclet.verbose.0=true # content.tld ------------------------------------- maven.xdoclet.webdoclet.fileset.0=true maven.xdoclet.webdoclet.fileset.0.include=**/dynbutton/*Tag.java maven.xdoclet.webdoclet.fileset.0.exclude=**/deprecated/**/*Tag.java maven.xdoclet.webdoclet.jsptaglib.0=true maven.xdoclet.webdoclet.jsptaglib.0.shortname=content maven.xdoclet.webdoclet.jsptaglib.0.destinationFile=content.tld maven.xdoclet.webdoclet.jsptaglib.0.jspversion=1.2 maven.xdoclet.webdoclet.jsptaglib.0.destDir=${maven.build.dir}/xdoclet/webdoclet/WEB-INF/tlds maven.xdoclet.webdoclet.deploymentdescriptor.0=true # test-html.tld ------------------------------------- maven.xdoclet.webdoclet.fileset.1=true maven.xdoclet.webdoclet.fileset.1.include=**/button/IconButtonTag.java maven.xdoclet.webdoclet.fileset.1.exclude=**/deprecated/**/*Tag.java maven.xdoclet.webdoclet.jsptaglib.1=true maven.xdoclet.webdoclet.jsptaglib.1.shortname=testHtml maven.xdoclet.webdoclet.jsptaglib.1.destinationFile=test-html.tld maven.xdoclet.webdoclet.jsptaglib.1.jspversion=1.2 maven.xdoclet.webdoclet.jsptaglib.1.destDir=${maven.build.dir}/xdoclet/webdoclet/WEB-INF/tlds maven.xdoclet.webdoclet.deploymentdescriptor.1=true maven.xdoclet.webdoclet.0.destDir=${maven.build.dir}/xdoclet/webdoclet/WEB-INF maven.xdoclet.webdoclet.0.mergeDir=src/merge #Include?? #maven.xdoclet.webdoclet.1.destDir=${maven.build.dir}/xdoclet/webdoclet/WEB-INF #maven.xdoclet.webdoclet.1.mergeDir=src/merge taglib.src.dir=${maven.build.dir}/xdoclet/webdoclet/WEB-INF/tlds -------------------------------------- END :
project.properties ----------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------- |