Hi again,
  Thanks Ben for quick reply. Actually my plugin is not working completely. It goes 
inside my application but fails where I use jakarta digester component. Thats why I 
had a doubt that these maven.log errors may be causing my program to fail. Using this 
digester component,I am parsing an xml and also performing some XSLT operations. So I 
think there may be a clash between jaxp.jar which maven uses internally. What is your 
opinion? My program just fails throwing this mesg

BUILD FAILED
org/apache/commons/digester/RuleSet


   If I comment the code block which uses RuleSet, the program flow atleast goes 
further. But doesnt complete sucessfully.
When the code is uncommented it shows the above error and quits. What could be the 
reason for this?

Thanks & Regards,
Mahesh
 

-----Original Message-----
From: Ben Walding [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 15, 2003 11:14 AM
To: Maven Developers List
Subject: Re: Jelly Errors : Class com.werken.werkz.jelly.GoalTag doesn't
support the nested "taskdef" element.


If your plugin works, don't worry about those errors.   Jelly has a 
habit of writing excessive amounts of entries to maven.log.

We'll slowly prune them down as things get handled better in jelly.



Mahesh wrote:

>Hi,
> I have written a plugin for my application (A Java Code Metrics Analyzer Utility). 
> When I run the maven-jdocaudit-plugin:report, it logs the error messages in 
> maven.log. Can anybody help me why these errors are coming? Or Is there anything 
> wrong with jelly file which I have written.
>
>Contents of maven.log is as follows
>
>2003-04-15 09:56:19,983 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class 
>org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
>2003-04-15 09:56:20,530 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class 
>com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
>2003-04-15 09:56:20,592 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class 
>com.werken.werkz.jelly.GoalTag doesn't support the nested "taskdef" element.
>2003-04-15 09:56:20,639 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class 
>com.werken.werkz.jelly.GoalTag doesn't support the nested "jdocaudit" element.
>
>
>
>
>Here is the contents of project.jelly file
>
><?xml version="1.0"?>
>
>  <!-- ================================================================== -->
>  <!-- J D O C A U D I T                                                  -->
>  <!-- ================================================================== -->
>
><project xmlns:j="jelly:core" 
>  xmlns:doc="doc">
>
>  <goal name="maven-jdocaudit-plugin:register">
>               <doc:registerReport 
>                       name="JDocAudit" 
>                       link="jdocaudit/report/index"
>                       description="Report on Java Cource Code Metrics."/>
>  </goal>
>
>  <goal name="maven-jdocaudit-plugin:deregister">
>      <doc:deregisterReport name="JDocAudit"/>
>  </goal>
>
>  <!--
>     ========================================================================
>       Initialization. Creates objects useful for several goals.
>     ========================================================================
>  -->
>       <goal name="maven-jdocaudit-plugin:init" description="Creates objects useful 
> for several goals">
>
>    <taskdef 
>                       name="jdocaudit"
>      classname="com.metapa.jdocaudit.util.JdocAuditTask">
>    </taskdef>
>
>       </goal> 
>
>  <goal name="maven-jdocaudit-plugin:report"
>        prereqs="maven-jdocaudit-plugin:init"
>        description="Generate Java Code Metrics documentation">
>
>               <jdocaudit 
> configfile="D:/mycvs/metapa/tools/jdocaudit/config/config.xml">
>               </jdocaudit>
>
>  </goal> 
> 
></project>
>   
>
>
>Thanks & Regards,
>Mahesh Nanavare 
>



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

Reply via email to