* Generated tag class.
*
* @jsp.tag name="button" body-content="JSP"
*/
public class ButtonTag extends BodyTagSupport {
Above is one of my tags. If I changed body-content="JSP" to bodycontent="JSP".
The plugin told me that there is not valid. When I changed back, nothing was generated.
Would you please tell me how to debug this plugin? Thanks.
On 5/12/06, chang wei <[EMAIL PROTECTED]
> wrote:
I am new to maven2-xdoclet2 plugin. Today I added the plugin in my project pom.xml and run mvn install. I got the following warning and the tld file only contain <tlib-version> and <short-name>. Was there anything I missed. Please advise. Thanks.
[WARN] POM for 'xdoclet-plugins:xdoclet-plugin-web:pom:1.0.4-SNAPSHOT' is invalid. It will be ignored for artifact resolution. Reason: Not a v4.0.0 POM.
[WARN] Unable to get resource from repository ibiblio ( http://www.ibiblio.org/maven2)
[WARN] Unable to get resource from repository codehaus ( http://dist.codehaus.org/)
[WARN] Unable to get resource from repository codehaus-legacy ( http://dist.codehaus.org/)
[WARN] Unable to get resource from repository dist.codehaus.org (http://dist.codehaus.org )
[WARN] Unable to get resource from repository apache (http://cvs.apache.org/repository/)
[WARN] Unable to get resource from repository central ( http://repo1.maven.org/maven2)
log4j:WARN No appenders could be found for logger (org.apache.commons.jelly.parser.XMLParser).
log4j:WARN Please initialize the log4j system properly.
[INFO] 2-xdoclet2:xdoclet {execution: default}
Running org.xdoclet.plugin.web.TaglibPlugin
[INFO] resources:resources
[INFO] Using default encoding to copy filtered resources.
[INFO] compiler:compile
[INFO] Nothing to compile - all classes are up to date
<plugin>
<groupId>xdoclet</groupId>
<artifactId>maven2-xdoclet2-plugin</artifactId>
<version>2.0.5-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>xdoclet</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>xdoclet-plugins</groupId>
<artifactId>xdoclet-plugin-web</artifactId>
<version>1.0.4-SNAPSHOT</version>
</dependency>
</dependencies>
<configuration>
<configs>
<config>
<plugin>
org.xdoclet.plugin.web.TaglibPlugin
</plugin>
<params>
<jspversion>2.0</jspversion>
<destdir>
${basedir}/target/xdoclet
</destdir>
</params>
</config>
</configs>
</configuration>
</plugin>
