You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Greg Zoller <gr...@codaware.com> on 2003/05/05 18:08:56 UTC

Exceptions in b10 SNAPSHOT

Hello...

I'm still trying to figure out why maven isn't generating some build 
artifacts and
have narrowed my focus on a bunch of errors (and a couple exceptions) in
maven.log. 

The log file is a little long, so I apologize for the attachment.

I'm really not sure who's generating these errors and the log file isn't 
very
helpful as it doesn't tell me which files its trying to read when it fails.

 From reading the log it seems that there's some error someplace, possibly
in a plug-in, that's causing a "derailed train" effect.  How can I 
discover where
the problem might be?

The project used is a trivial, 1-class entity bean, and I'm using
the b10 snapshot.

Any ideas would be greatly appreciated.
Thanks in advance,
Greg

(BTW, I do get errors when I build other, non-ejb targets, but they vary
depending on what I'm doing.)

HTML generation

Posted by Jon Strayer <jo...@strayer.net>.
I noticed that the generated by the XDocs plugin are rather
large.  I nosed around in the Jelly file and found that the
files were being generated with prettyPrint="no".  Setting
it to "yes" seemd to shrink the files a bit, but it changed
the way it was rendered.  Is this a known bug, or something
it might be useful for me to continue researching?

-- 



Each and every day a day goes by... 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: HTML generation

Posted by Brian Ewins <Br...@btinternet.com>.
It changes the way its rendered, because the prettyprint feels free to 
add and remove whitespace at whim (and I assume it'll destroy 
preformatted text too). It looks to me like the jelly tags suffer from a 
problem I've seen in xsl - if you use mixed content in xsl, whitespace 
gets you every time, eg:
<xsl:template name="foo">
    try <example> This
    </example>
</xsl:template>
will render as:
=================

    try <example> This
    </example>
=================
with prettyprinting off and like this with it on:
=================
try<example>This</example>
=================
The solution in xsl is to use xsl:text, eg:
<xsl:template name="foo">
    <xsl:text>try </xsl:text><example><xsl:text> This
<xsl:text>
    </example>
</xsl:template>
renders as:
=================
try <example> This
</example>
=================
whether you prettyprint or not. There isn't an equivalent of xsl:text in 
jelly so I havent the foggiest how you're supposed to deal with mixed 
content.

It seems to me to be about the only feature in xsl you can't get at in 
jsl...any of the jelly developers care to comment?

-Baz

Jon Strayer wrote:
> I noticed that the generated by the XDocs plugin are rather
> large.  I nosed around in the Jelly file and found that the
> files were being generated with prettyPrint="no".  Setting
> it to "yes" seemd to shrink the files a bit, but it changed
> the way it was rendered.  Is this a known bug, or something
> it might be useful for me to continue researching?
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Exceptions in b10 SNAPSHOT

Posted by Peter Lynch <pe...@mindspring.com>.
Yeah I've seen this exception too. Only way to get to it seems to be 
using a debugger. Haven't had time yet. Have no idea where it is coming 
from off hand.

If you find out let us know...


-Peter

Greg Zoller wrote:
> Hello...
> 
> I'm still trying to figure out why maven isn't generating some build 
> artifacts and
> have narrowed my focus on a bunch of errors (and a couple exceptions) in
> maven.log.
> The log file is a little long, so I apologize for the attachment.
> 
> I'm really not sure who's generating these errors and the log file isn't 
> very
> helpful as it doesn't tell me which files its trying to read when it fails.
> 
>  From reading the log it seems that there's some error someplace, possibly
> in a plug-in, that's causing a "derailed train" effect.  How can I 
> discover where
> the problem might be?
> 
> The project used is a trivial, 1-class entity bean, and I'm using
> the b10 snapshot.
> 
> Any ideas would be greatly appreciated.
> Thanks in advance,
> Greg
> 
> (BTW, I do get errors when I build other, non-ejb targets, but they vary
> depending on what I'm doing.)
> 
> 
> ------------------------------------------------------------------------
> 
> 2003-05-05 08:22:01,173 INFO  org.apache.maven.plugin.PluginManager - Initializing Plugins!
> 2003-05-05 08:22:01,239 INFO  org.apache.maven.plugin.PluginManager - Processing Plugin: maven-castor-plugin-1.0
> 2003-05-05 08:22:01,381 INFO  org.apache.maven.plugin.PluginManager - Processing Plugin: maven-sea-plugin-1.0
> 2003-05-05 08:22:01,411 INFO  org.apache.maven.plugin.PluginManager - Processing Plugin: maven-plexus-plugin-0.2
> 2003-05-05 08:22:01,457 INFO  org.apache.maven.plugin.PluginManager - Processing Plugin: maven-vdoclet-plugin-1.0
> 2003-05-05 08:22:01,467 INFO  org.apache.maven.plugin.PluginManager - Processing Plugin: maven-deploy-plugin-1.1
> 2003-05-05 08:22:01,548 INFO  org.apache.maven.plugin.PluginManager - Finished initializing Plugins!
> 2003-05-05 08:22:03,528 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "available" element.
> 2003-05-05 08:22:03,669 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:03,744 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:03,979 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:03,982 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:04,212 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:04,220 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:04,693 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:04,696 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,174 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,176 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,315 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,317 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,518 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,520 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,729 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,731 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,758 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:05,930 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "property" element.
> 2003-05-05 08:22:06,114 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:06,116 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:06,163 WARN  org.apache.commons.jelly.expression.jexl.JexlExpression - Caught exception evaluating: org.apache.commons.jexl.ExpressionImpl@83b1b. Reason: java.lang.NumberFormatException: For input string: "includes"
> java.lang.NumberFormatException: For input string: "includes"
> 	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
> 	at java.lang.Integer.parseInt(Integer.java:468)
> 	at java.lang.Integer.valueOf(Integer.java:574)
> 	at org.apache.commons.jexl.util.Coercion.coerceInteger(Coercion.java:95)
> 	at org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:177)
> 	at org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:104)
> 	at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:106)
> 	at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:88)
> 	at org.apache.commons.jexl.parser.ASTNotNode.value(ASTNotNode.java:88)
> 	at org.apache.commons.jexl.parser.ASTExpression.value(ASTExpression.java:85)
> 	at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:123)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpression.evaluate(JexlExpression.java:115)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpressionFactory$ExpressionSupportLocal.evaluate(JexlExpressionFactory.java:168)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:106)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsBoolean(ExpressionSupport.java:116)
> 	at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:90)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:84)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.ProjectTag.doTag(ProjectTag.java:112)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:112)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:139)
> 	at org.apache.maven.plugin.PluginManager.loadPlugin(PluginManager.java:693)
> 	at org.apache.maven.plugin.PluginManager.prepForGoal(PluginManager.java:495)
> 	at org.apache.maven.MavenSession.prepForGoal(MavenSession.java:257)
> 	at org.apache.maven.jelly.tags.werkz.LazyAttainGoalTag.doTag(LazyAttainGoalTag.java:105)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:88)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.GoalTag$1.performAction(GoalTag.java:116)
> 	at com.werken.werkz.Goal.fire(Goal.java:639)
> 	at com.werken.werkz.Goal.attain(Goal.java:575)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:403)
> 	at org.apache.maven.MavenSession.attainGoals(MavenSession.java:357)
> 	at org.apache.maven.cli.App.doMain(App.java:525)
> 	at org.apache.maven.cli.App.main(App.java:1088)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:324)
> 	at com.werken.forehead.Forehead.run(Forehead.java:543)
> 	at com.werken.forehead.Forehead.main(Forehead.java:573)
> 2003-05-05 08:22:06,173 WARN  org.apache.commons.jelly.expression.jexl.JexlExpression - Caught exception evaluating: org.apache.commons.jexl.ExpressionImpl@caf6c1. Reason: java.lang.NumberFormatException: For input string: "excludes"
> java.lang.NumberFormatException: For input string: "excludes"
> 	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
> 	at java.lang.Integer.parseInt(Integer.java:468)
> 	at java.lang.Integer.valueOf(Integer.java:574)
> 	at org.apache.commons.jexl.util.Coercion.coerceInteger(Coercion.java:95)
> 	at org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:177)
> 	at org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:104)
> 	at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:106)
> 	at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:88)
> 	at org.apache.commons.jexl.parser.ASTNotNode.value(ASTNotNode.java:88)
> 	at org.apache.commons.jexl.parser.ASTExpression.value(ASTExpression.java:85)
> 	at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:123)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpression.evaluate(JexlExpression.java:115)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpressionFactory$ExpressionSupportLocal.evaluate(JexlExpressionFactory.java:168)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:106)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsBoolean(ExpressionSupport.java:116)
> 	at org.apache.commons.jelly.tags.core.WhenTag.doTag(WhenTag.java:90)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.ChooseTag.doTag(ChooseTag.java:84)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.ProjectTag.doTag(ProjectTag.java:112)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:112)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:139)
> 	at org.apache.maven.plugin.PluginManager.loadPlugin(PluginManager.java:693)
> 	at org.apache.maven.plugin.PluginManager.prepForGoal(PluginManager.java:495)
> 	at org.apache.maven.MavenSession.prepForGoal(MavenSession.java:257)
> 	at org.apache.maven.jelly.tags.werkz.LazyAttainGoalTag.doTag(LazyAttainGoalTag.java:105)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:88)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.GoalTag$1.performAction(GoalTag.java:116)
> 	at com.werken.werkz.Goal.fire(Goal.java:639)
> 	at com.werken.werkz.Goal.attain(Goal.java:575)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:403)
> 	at org.apache.maven.MavenSession.attainGoals(MavenSession.java:357)
> 	at org.apache.maven.cli.App.doMain(App.java:525)
> 	at org.apache.maven.cli.App.main(App.java:1088)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:324)
> 	at com.werken.forehead.Forehead.run(Forehead.java:543)
> 	at com.werken.forehead.Forehead.main(Forehead.java:573)
> 2003-05-05 08:22:06,187 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.OtherwiseTag doesn't support the nested "property" element.
> 2003-05-05 08:22:06,188 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "patternset" element.
> 2003-05-05 08:22:06,192 WARN  org.apache.commons.jelly.expression.jexl.JexlExpression - Caught exception evaluating: org.apache.commons.jexl.ExpressionImpl@1b03c1a. Reason: java.lang.NumberFormatException: For input string: "includes"
> java.lang.NumberFormatException: For input string: "includes"
> 	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
> 	at java.lang.Integer.parseInt(Integer.java:468)
> 	at java.lang.Integer.valueOf(Integer.java:574)
> 	at org.apache.commons.jexl.util.Coercion.coerceInteger(Coercion.java:95)
> 	at org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:177)
> 	at org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:104)
> 	at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:106)
> 	at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:88)
> 	at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:123)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpression.evaluate(JexlExpression.java:115)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpressionFactory$ExpressionSupportLocal.evaluate(JexlExpressionFactory.java:168)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:106)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsIterator(ExpressionSupport.java:146)
> 	at org.apache.commons.jelly.tags.core.ForEachTag.doTag(ForEachTag.java:127)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:271)
> 	at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:266)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.ProjectTag.doTag(ProjectTag.java:112)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:112)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:139)
> 	at org.apache.maven.plugin.PluginManager.loadPlugin(PluginManager.java:693)
> 	at org.apache.maven.plugin.PluginManager.prepForGoal(PluginManager.java:495)
> 	at org.apache.maven.MavenSession.prepForGoal(MavenSession.java:257)
> 	at org.apache.maven.jelly.tags.werkz.LazyAttainGoalTag.doTag(LazyAttainGoalTag.java:105)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:88)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.GoalTag$1.performAction(GoalTag.java:116)
> 	at com.werken.werkz.Goal.fire(Goal.java:639)
> 	at com.werken.werkz.Goal.attain(Goal.java:575)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:403)
> 	at org.apache.maven.MavenSession.attainGoals(MavenSession.java:357)
> 	at org.apache.maven.cli.App.doMain(App.java:525)
> 	at org.apache.maven.cli.App.main(App.java:1088)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:324)
> 	at com.werken.forehead.Forehead.run(Forehead.java:543)
> 	at com.werken.forehead.Forehead.main(Forehead.java:573)
> 2003-05-05 08:22:06,195 WARN  org.apache.commons.jelly.expression.jexl.JexlExpression - Caught exception evaluating: org.apache.commons.jexl.ExpressionImpl@139e351. Reason: java.lang.NumberFormatException: For input string: "excludes"
> java.lang.NumberFormatException: For input string: "excludes"
> 	at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
> 	at java.lang.Integer.parseInt(Integer.java:468)
> 	at java.lang.Integer.valueOf(Integer.java:574)
> 	at org.apache.commons.jexl.util.Coercion.coerceInteger(Coercion.java:95)
> 	at org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:177)
> 	at org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:104)
> 	at org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:106)
> 	at org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:88)
> 	at org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:123)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpression.evaluate(JexlExpression.java:115)
> 	at org.apache.commons.jelly.expression.jexl.JexlExpressionFactory$ExpressionSupportLocal.evaluate(JexlExpressionFactory.java:168)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(ExpressionSupport.java:106)
> 	at org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsIterator(ExpressionSupport.java:146)
> 	at org.apache.commons.jelly.tags.core.ForEachTag.doTag(ForEachTag.java:127)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.TagSupport.getBodyText(TagSupport.java:271)
> 	at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:266)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.ProjectTag.doTag(ProjectTag.java:112)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:112)
> 	at org.apache.maven.jelly.JellyUtils.runScript(JellyUtils.java:139)
> 	at org.apache.maven.plugin.PluginManager.loadPlugin(PluginManager.java:693)
> 	at org.apache.maven.plugin.PluginManager.prepForGoal(PluginManager.java:495)
> 	at org.apache.maven.MavenSession.prepForGoal(MavenSession.java:257)
> 	at org.apache.maven.jelly.tags.werkz.LazyAttainGoalTag.doTag(LazyAttainGoalTag.java:105)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:88)
> 	at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
> 	at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
> 	at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:233)
> 	at com.werken.werkz.jelly.GoalTag$1.performAction(GoalTag.java:116)
> 	at com.werken.werkz.Goal.fire(Goal.java:639)
> 	at com.werken.werkz.Goal.attain(Goal.java:575)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at com.werken.werkz.Goal.attainPrecursors(Goal.java:488)
> 	at com.werken.werkz.Goal.attain(Goal.java:573)
> 	at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:403)
> 	at org.apache.maven.MavenSession.attainGoals(MavenSession.java:357)
> 	at org.apache.maven.cli.App.doMain(App.java:525)
> 	at org.apache.maven.cli.App.main(App.java:1088)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:324)
> 	at com.werken.forehead.Forehead.run(Forehead.java:543)
> 	at com.werken.forehead.Forehead.main(Forehead.java:573)
> 2003-05-05 08:22:06,199 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "mkdir" element.
> 2003-05-05 08:22:06,334 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:06,340 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:08,237 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "taskdef" element.
> 2003-05-05 08:22:08,344 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "ejbdoclet" element.
> 2003-05-05 08:22:09,334 ERROR org.apache.commons.jelly.tags.ant.AntTag - Can't create a ejbdoclet element under {2}. Make sure the jar file containing the corresponding subtask class is on the classpath specified in the <taskdef> that defined {2}.
> 2003-05-05 08:22:09,341 WARN  org.apache.commons.jelly.tags.ant.AntTag - Could not convert tag: strutsform into an Ant task, data type or property
> 2003-05-05 08:22:11,825 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "path" element.
> 2003-05-05 08:22:11,842 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.WhenTag doesn't support the nested "javac" element.
> 2003-05-05 08:22:13,149 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.ProjectTag doesn't support the nested "path" element.
> 2003-05-05 08:22:13,151 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "path" element.
> 2003-05-05 08:22:13,244 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "mkdir" element.
> 2003-05-05 08:22:13,245 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "taskdef" element.
> 2003-05-05 08:22:13,284 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "ejbdoclet" element.
> 2003-05-05 08:22:14,056 ERROR org.apache.commons.jelly.tags.ant.AntTag - Can't create a ejbdoclet element under {2}. Make sure the jar file containing the corresponding subtask class is on the classpath specified in the <taskdef> that defined {2}.
> 2003-05-05 08:22:14,056 WARN  org.apache.commons.jelly.tags.ant.AntTag - Could not convert tag: strutsform into an Ant task, data type or property
> 2003-05-05 08:22:15,870 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "path" element.
> 2003-05-05 08:22:15,873 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.WhenTag doesn't support the nested "javac" element.
> 2003-05-05 08:22:15,892 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "mkdir" element.
> 2003-05-05 08:22:15,895 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "mkdir" element.
> 2003-05-05 08:22:15,897 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "echo" element.
> 2003-05-05 08:22:15,914 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class org.apache.commons.jelly.tags.core.IfTag doesn't support the nested "echo" element.
> 2003-05-05 08:22:15,932 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "echo" element.
> 2003-05-05 08:22:15,944 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "available" element.
> 2003-05-05 08:22:15,948 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.GoalTag doesn't support the nested "jar" element.
> 2003-05-05 08:22:16,137 INFO  com.werken.werkz.jelly.PostGoalTag - Running post goal: ejb
> 2003-05-05 08:22:16,138 ERROR org.apache.commons.jelly.tags.ant.AntTag - Class com.werken.werkz.jelly.PostGoalTag doesn't support the nested "move" element.
> 
> 
> 
> ------------------------------------------------------------------------
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org