You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by "ahgt sur laposte.net" <ah...@laposte.net> on 2005/06/21 10:49:57 UTC

RE : How do deal with ">" or LT in maven 1.0.1

May be try &amp;lt;
I have seen this here :
http://maven.apache.org/reference/plugins/xdoc/faq.html#description-html

But don't really know if it can apply.... Give it a try...
Antoine


-----Message d'origine-----
De : jean-marc.bottin@bnpparibas.com
[mailto:jean-marc.bottin@bnpparibas.com] 
Envoyé : mardi 21 juin 2005 09:55
À : users@maven.apache.org
Objet : How do deal with ">" or LT in maven 1.0.1


Hi all,

I am having some difficulties with the LT expression.
I am passing to a value by the command line like maven
-Djbox.version=DEFF-UAT2-V9 jbox:try

I want to evaluate the numeric part of the variable jbox;version which
is 9 in this example. So I proceed the following way:

<j:set var="jboxLength"
value="${context.getVariable('jbox.version').length()}"/>
<j:set var="jboxNumber"
value="${context.getVariable('jbox.version').substring(11,jboxLength)}"/
>

<j:if test="${jboxNumber &lt; 10}">
      <echo>Less than 10</echo>
</j:if>

But I never reach the echo; I get the followinf error message:

Caught exception evaluating:
org.apache.commons.jexl.ExpressionImpl@130633a. Reason:
java.lang.Exception: Invalid comparison : LT
java.lang.Exception: Invalid comparison : LT
        at
org.apache.commons.jexl.parser.ASTLTNode.value(ASTLTNode.java:105)
        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(JexlExp
ression.java:115)
        at
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(Ex
pressionSupport.java:106)
        at
org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsBoolean(
ExpressionSupport.java:116)
        at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:87)
        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.WhenTag.doTag(WhenTag.java:92)
        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
org.apache.commons.jelly.impl.StaticTag.doTag(StaticTag.java:111)
        at
org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:274)
        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.plugin.PluginManager.runScript(PluginManager.java:1143)
        at
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:647
)
        at
org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:39)
        at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at com.werken.forehead.Forehead.run(Forehead.java:551)
        at com.werken.forehead.Forehead.main(Forehead.java:581)
BUILD FAILED
Goal "jbox:trest" does not exist in this project.
Total time: 2 seconds
Finished at: Tue Jun 21 09:53:01 CEST 2005

Any ideas?

Thanks,

Jean-Marc



This message and any attachments (the "message") is
intended solely for the addressees and is confidential. 
If you receive this message in error, please delete it and 
immediately notify the sender. Any use not in accord with 
its purpose, any dissemination or disclosure, either whole 
or partial, is prohibited except formal approval. The internet can not
guarantee the integrity of this message. 
BNP PARIBAS (and its subsidiaries) shall (will) not 
therefore be liable for the message if modified. 

                ---------------------------------------------

Ce message et toutes les pieces jointes (ci-apres le 
"message") sont etablis a l'intention exclusive de ses 
destinataires et sont confidentiels. Si vous recevez ce 
message par erreur, merci de le detruire et d'en avertir 
immediatement l'expediteur. Toute utilisation de ce 
message non conforme a sa destination, toute diffusion 
ou toute publication, totale ou partielle, est interdite, sauf 
autorisation expresse. L'internet ne permettant pas 
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce 
message, dans l'hypothese ou il aurait ete modifie.

---------------------------------------------------------------------
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


Re: maven -X successful but lots of error messages

Posted by Brett Porter <br...@gmail.com>.
This is just debugging coming from Ant. Nothing to worry about.

- Brett

On 6/21/05, Michael Niemaz <Mi...@xrce.xerox.com> wrote:
> Hi all,
>     I'm trying to debug something so I ran maven -X ...
> I noticed that I had tons of the following error message.
> It seems to happen on every goals ;-(
> My build is successful though, maybe it is not that important but we
> never know ;-)
> 
> --mike

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


maven -X successful but lots of error messages

Posted by Michael Niemaz <Mi...@xrce.xerox.com>.
Hi all,
    I'm trying to debug something so I ran maven -X ...
I noticed that I had tons of the following error message.
It seems to happen on every goals ;-(
My build is successful though, maybe it is not that important but we 
never know ;-)

--mike

[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.PropertyFile) for type propertyfile
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.clearcase.CCMkdir) for type ccmkdir
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.dotnet.ImportTypelib) for type 
importtypelib
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.vss.MSVSSCHECKIN) for type 
vsscheckin
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Reopen) for type p4reopen
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.image.Image) for type image
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.dotnet.CSharp) for type csc
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ssh.SSHExec) for type sshexec
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ejb.WLRun) for type wlrun
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Label) for type p4label
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Revert) for type p4revert
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ReplaceRegExp) for type 
replaceregexp
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.javacc.JJTree) for type jjtree
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.extension.JarLibDisplayTask) for 
type jarlib-display
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.jsp.JspC) for type jspc
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.Test) for type test
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.vss.MSVSSHISTORY) for type 
vsshistory
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.IContract) for type icontract
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.extension.ExtensionSet) for type 
extensionSet
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Submit) for type p4submit
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ccm.CCMCheckin) for type ccmcheckin
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ssh.Scp) for type scp
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Change) for type p4change
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Delete) for type p4delete
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.vss.MSVSSADD) for type vssadd
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Integrate) for type 
p4integrate
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.i18n.Translate) for type translate
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.clearcase.CCLock) for type cclock
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.unix.Chown) for type chown
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ide.VAJLoadProjects) for type 
vajload
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.extension.JarLibAvailableTask) 
for type jarlib-available
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.dotnet.WsdlToDotnet) for type 
WsdlToDotnet
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ejb.EjbJar) for type ejbjar
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.starteam.StarTeamList) for type 
stlist
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.j2ee.ServerDeploy) for type 
serverdeploy
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.dotnet.Ildasm) for type ildasm
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.clearcase.CCCheckin) for type 
cccheckin
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.clearcase.CCUnlock) for type 
ccunlock
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.jsp.WLJspc) for type wljspc
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.sos.SOSGet) for type sosget
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Sync) for type p4sync
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.clearcase.CCMklabel) for type 
ccmklabel
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.perforce.P4Edit) for type p4edit
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.metamata.MAudit) for type maudit
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ANTLR) for type antlr
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.NetRexxC) for type netrexxc
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.ccm.CCMCheckout) for type 
ccmcheckout
[DEBUG] Could not load class 
(org.apache.tools.ant.taskdefs.optional.XMLValidateTask) for type 
xmlvalidate


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


maven multiproject:site log4j error messages

Posted by Michael Niemaz <Mi...@xrce.xerox.com>.
Hi all,
    I'm getting the following messages when running multiproject:site goal.
The build is successful but I guess it would be better I could find out 
why I get these error messages. It probably has an impact on the 
generated reports but I can't say where ...

Any ideas?

--mike


    [echo] Generating xdocs from POM ...
Plugin context for maven-xdoc-plugin already initialised for this base 
context
Failed to read 
POM:/home/niemaz/.maven/repository/codeczar-tomcat/poms/maven-tomcat-plugin-1.1.pom
Failed to read POM:/home/niemaz/.maven/repository/jmx/poms/jmxri-1.2.1.pom
Failed to read 
POM:/home/niemaz/.maven/repository/jmx/poms/jmxtools-1.2.1.pom
Failed to read 
POM:/home/niemaz/.maven/repository/jmxremote/poms/jmxremote-1.0.1.pom
Failed to read 
POM:/home/niemaz/.maven/repository/jmxremote/poms/jmxremote_optional-1.0.1.pom
Failed to read 
POM:/home/niemaz/.maven/repository/commons-logging/poms/commons-logging-1.0.4.pom
Failed to read 
POM:/home/niemaz/.maven/repository/servletapi/poms/servletapi-2.3.pom
Failed to read 
POM:/home/niemaz/.maven/repository/smartdocument/poms/smartdocument.core-1.2.0.pom
Failed to read 
POM:/home/niemaz/.maven/repository/javamail/poms/mail-1.3.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/jaf/poms/activation-1.0.2.pom
Failed to read POM:/home/niemaz/.maven/repository/axis/poms/axis-1.2.pom
Failed to read POM:/home/niemaz/.maven/repository/axis/poms/axis-ant-1.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/axis/poms/axis-jaxrpc-1.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/axis/poms/axis-saaj-1.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/axis/poms/axis-wsdl4j-1.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/commons-discovery/poms/commons-discovery-0.2.pom
Failed to read 
POM:/home/niemaz/.maven/repository/xerces/poms/xerces-2.4.0.pom
Failed to read 
POM:/home/niemaz/.maven/repository/xerces/poms/xercesImpl-2.6.2.pom
Failed to read POM:/home/niemaz/.maven/repository/xalan/poms/xalan-2.5.1.pom
Failed to read POM:/home/niemaz/.maven/repository/junit/poms/junit-3.8.1.pom
Failed to read 
POM:/home/niemaz/.maven/repository/maven-plugins/poms/maven-findbugs-plugin-0.9.1.pom

log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
Plugin context for maven-xdoc-plugin already initialised for this base 
context
Plugin context for maven-xdoc-plugin already initialised for this base 
context
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].
log4j:ERROR Attempted to append to closed appender named [null].


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


Réf. : RE : How do deal with ">" or LT in maven 1.0.1

Posted by je...@bnpparibas.com.
Hi Antoine,

 I tried and unfortunately, the result is the same.

Jean-Marc




Extranet
ahgt@laposte.net - 21/06/2005 10:49


Veuillez répondre à users@maven.apache.org



Pour : users

cc :


Objet :     RE : How do deal with ">" or LT in maven 1.0.1


May be try &amp;lt;
I have seen this here :
http://maven.apache.org/reference/plugins/xdoc/faq.html#description-html

But don't really know if it can apply.... Give it a try...
Antoine


-----Message d'origine-----
De : jean-marc.bottin@bnpparibas.com
[mailto:jean-marc.bottin@bnpparibas.com]
Envoyé : mardi 21 juin 2005 09:55
À : users@maven.apache.org
Objet : How do deal with ">" or LT in maven 1.0.1


Hi all,

I am having some difficulties with the LT expression.
I am passing to a value by the command line like maven
-Djbox.version=DEFF-UAT2-V9 jbox:try

I want to evaluate the numeric part of the variable jbox;version which
is 9 in this example. So I proceed the following way:

<j:set var="jboxLength"
value="${context.getVariable('jbox.version').length()}"/>
<j:set var="jboxNumber"
value="${context.getVariable('jbox.version').substring(11,jboxLength)}"/
>

<j:if test="${jboxNumber &lt; 10}">
      <echo>Less than 10</echo>
</j:if>

But I never reach the echo; I get the followinf error message:

Caught exception evaluating:
org.apache.commons.jexl.ExpressionImpl@130633a. Reason:
java.lang.Exception: Invalid comparison : LT
java.lang.Exception: Invalid comparison : LT
        at
org.apache.commons.jexl.parser.ASTLTNode.value(ASTLTNode.java:105)
        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(JexlExp
ression.java:115)
        at
org.apache.commons.jelly.expression.ExpressionSupport.evaluateRecurse(Ex
pressionSupport.java:106)
        at
org.apache.commons.jelly.expression.ExpressionSupport.evaluateAsBoolean(
ExpressionSupport.java:116)
        at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:87)
        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.WhenTag.doTag(WhenTag.java:92)
        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
org.apache.commons.jelly.impl.StaticTag.doTag(StaticTag.java:111)
        at
org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:274)
        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.plugin.PluginManager.runScript(PluginManager.java:1143)
        at
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:647
)
        at
org.apache.maven.MavenSession.attainGoals(MavenSession.java:263)
        at org.apache.maven.cli.App.doMain(App.java:488)
        at org.apache.maven.cli.App.main(App.java:1239)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:39)
        at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at com.werken.forehead.Forehead.run(Forehead.java:551)
        at com.werken.forehead.Forehead.main(Forehead.java:581)
BUILD FAILED
Goal "jbox:trest" does not exist in this project.
Total time: 2 seconds
Finished at: Tue Jun 21 09:53:01 CEST 2005

Any ideas?

Thanks,

Jean-Marc



This message and any attachments (the "message") is
intended solely for the addressees and is confidential.
If you receive this message in error, please delete it and
immediately notify the sender. Any use not in accord with
its purpose, any dissemination or disclosure, either whole
or partial, is prohibited except formal approval. The internet can not
guarantee the integrity of this message.
BNP PARIBAS (and its subsidiaries) shall (will) not
therefore be liable for the message if modified.

                ---------------------------------------------

Ce message et toutes les pieces jointes (ci-apres le
"message") sont etablis a l'intention exclusive de ses
destinataires et sont confidentiels. Si vous recevez ce
message par erreur, merci de le detruire et d'en avertir
immediatement l'expediteur. Toute utilisation de ce
message non conforme a sa destination, toute diffusion
ou toute publication, totale ou partielle, est interdite, sauf
autorisation expresse. L'internet ne permettant pas
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce
message, dans l'hypothese ou il aurait ete modifie.

---------------------------------------------------------------------
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



This message and any attachments (the "message") is
intended solely for the addressees and is confidential. 
If you receive this message in error, please delete it and 
immediately notify the sender. Any use not in accord with 
its purpose, any dissemination or disclosure, either whole 
or partial, is prohibited except formal approval. The internet
can not guarantee the integrity of this message. 
BNP PARIBAS (and its subsidiaries) shall (will) not 
therefore be liable for the message if modified. 

                ---------------------------------------------

Ce message et toutes les pieces jointes (ci-apres le 
"message") sont etablis a l'intention exclusive de ses 
destinataires et sont confidentiels. Si vous recevez ce 
message par erreur, merci de le detruire et d'en avertir 
immediatement l'expediteur. Toute utilisation de ce 
message non conforme a sa destination, toute diffusion 
ou toute publication, totale ou partielle, est interdite, sauf 
autorisation expresse. L'internet ne permettant pas 
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce 
message, dans l'hypothese ou il aurait ete modifie.

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