Re: Unable to override a subproject's maven.final.name

2003-12-07 Thread Jefferson K. French
When I set the value of maven.final.name in a jar:jar preGoal, it has
the correct value there and in the jar:jar postGoal. But for some
reason it contains an earlier value in the jar:jar goal.

I've put echo tags in a few pre/post goals, as well as a couple in the
jar plugin's plugin.jelly file to show the value of maven.final.name
at various points. I set the property in maven.xml like this:

  

jar:jar preGoal: maven.final.name=${maven.final.name}
  

Any idea what I could be doing wrong?

--- Begin install-snapshot output ---

$ maven -DmdbRelease=0.1.5 jar:install-snapshot
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc2-SNAPSHOT

jar:snapshot:
[echo] jar:snapshot preGoal: maven.final.name=mdb-util-SNAPSHOT
[echo] jar:snapshot goal: maven.final.name=mdb-util-SNAPSHOT
[echo] Building snapshot JAR: mdb-util-20031208.012744
java:prepare-filesystem:

java:compile:
[echo] Compiling to /home/jeff/work/mdb/common/mdb-util/target/classes
[javac] Compiling 2 source files to 
/home/jeff/work/mdb/common/mdb-util/target/classes

java:jar-resources:

test:prepare-filesystem:

test:test-resources:

test:compile:
[echo] No test source files to compile.

test:test:
[echo] No tests to run.

jar:jar:
[echo] jar:jar preGoal: maven.final.name=mdb-util-0.1.5
[echo] jar:jar goal: maven.final.name=mdb-util-20031208.012744
[jar] Building jar: 
/home/jeff/work/mdb/common/mdb-util/target/mdb-util-20031208.012744.jar
[echo] jar:jar postGoal: maven.final.name=mdb-util-0.1.5
aspectj:init:


[echo] jar:snapshot postGoal: maven.final.name=mdb-util-0.1.5

jar:install-snapshot:
[echo] jar:install-snapshot preGoal: maven.final.name=mdb-util-0.1.5
[copy] Copying 1 file to /home/jeff/.maven/repository/mdb/jars
[copy] Copying 
/home/jeff/work/mdb/common/mdb-util/target/mdb-util-20031208.012744.jar to 
/home/jeff/.maven/repository/mdb/jars/mdb-util-SNAPSHOT.jar
[copy] Copying 1 file to /home/jeff/.maven/repository/mdb/jars
[copy] Copying 
/home/jeff/work/mdb/common/mdb-util/target/mdb-util-20031208.012744.jar to 
/home/jeff/.maven/repository/mdb/jars/mdb-util-20031208.012744.jar
[echo] jar:install-snapshot postGoal: maven.final.name=mdb-util-0.1.5
BUILD SUCCESSFUL
Total time: 25 seconds
Finished at: Sun Dec 07 19:27:51 CST 2003

--- End install-snapshot output ---

On Sun, 7 Dec 2003, at 05:57:06 [GMT -0600] Jefferson K. French wrote:

> I have a jar:jar preGoal in my master maven.xml file that sets the
> maven.final.name property as such:

> value="${pom.artifactId}-${mdbRelease}"/>

> I then run install-snapshot using multiproject, and echo the value of
> maven.final.name immediately after setting it. It is correct. But when
> I echo it from within the jar:jar goal, maven.final.name contains the
> name set by jar:snapshot.

> Should I be able to override maven.final.name this way? If so, any
> ideas what I could be doing wrong? Since jar:snapshot attains the
> jar:jar goal after setting maven.final.name, I figured my preGoal
> would override that setting.

> Thanks.

> Jeff


-- 
mailto:[EMAIL PROTECTED]



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



Re: jelly junit javac task classpath, and project dependencies

2003-12-07 Thread Bert van Brakel
I'm using the jelly junit tags. I have a file called suite.jelly and a 
test case which subclasses  
org.apache.commons.jelly.tags.junit.JellyTestSuite.
Obviously the jelly test case don't know about maven as it's part of jelly.

The suite.jelly I'm using is below. The pipeline generates some code and 
test cases which I then want to compile and run




   
   
   Invoked the pipeline
   
   
  
  
  
   
  
   
  
   
   
   
   
  
  
   
   
   Compiling generated sources...
   

   
  
   
  
   





[EMAIL PROTECTED] wrote:

Can you show us how you're running the tests.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/


Bert van Brakel <[EMAIL PROTECTED]> wrote on 08/12/2003 08:57:57 AM:

 

thanks but unfortunately that doesn't work ( I'd already tried that ). 
From what I can see the  context created for the jelly script unit 
tests is completely fresh with only the basedir ( and possibly other 
system properties) being included.

At this stage I'll look at using a custom tag to process the project 
file and place the required variables in the context but I'd hoped there 
   

 

would already be a solution.

-Bert



[EMAIL PROTECTED] wrote:

   

classpathref="maven.dependency.classpath" on your javac task.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/


Bert van Brakel <[EMAIL PROTECTED]> wrote on 07/12/2003 08:43:18 PM:



 

I'm using jelly junit to run some of my tests which include using the 
ant:javac task to compile some generated code and I'm wondering how to 
   

 

include all the project dependencies in javac's classpath. If anyone 
could point me in the right direction it would be most appreciated, as 
   

I 
 

   

 

haven't been able to find anything on the mail archives. I'm not 
   

really 
 

keen to duplicate the dependencies in each junit test script.

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


   

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


 

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



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



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


Re: jelly junit javac task classpath, and project dependencies

2003-12-07 Thread dion
Can you show us how you're running the tests.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Bert van Brakel <[EMAIL PROTECTED]> wrote on 08/12/2003 08:57:57 AM:

> thanks but unfortunately that doesn't work ( I'd already tried that ). 
>  From what I can see the  context created for the jelly script unit 
> tests is completely fresh with only the basedir ( and possibly other 
> system properties) being included.
> 
> At this stage I'll look at using a custom tag to process the project 
> file and place the required variables in the context but I'd hoped there 

> would already be a solution.
> 
> -Bert
> 
> 
> 
> 
> [EMAIL PROTECTED] wrote:
> 
> >classpathref="maven.dependency.classpath" on your javac task.
> >--
> >dIon Gillard, Multitask Consulting
> >Blog:  http://blogs.codehaus.org/people/dion/
> >
> >
> >
> >Bert van Brakel <[EMAIL PROTECTED]> wrote on 07/12/2003 08:43:18 PM:
> >
> > 
> >
> >>I'm using jelly junit to run some of my tests which include using the 
> >>ant:javac task to compile some generated code and I'm wondering how to 

> >>include all the project dependencies in javac's classpath. If anyone 
> >>could point me in the right direction it would be most appreciated, as 
I 
> >> 
> >>
> >
> > 
> >
> >>haven't been able to find anything on the mail archives. I'm not 
really 
> >>keen to duplicate the dependencies in each junit test script.
> >>
> >>Many thanks,
> >>-Bert
> >>
> >>
> >>-
> >>To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >> 
> >>
> >
> >
> >-
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> > 
> >
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


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



RE: Overriding plugin version

2003-12-07 Thread Brett Porter
Run maven plugin:install on your modified plugin. It will remove the old one
and add your new one. Make sure to change to 1.4-SNAPSHOT and work off the
CVS copy if you are going to contribute changes.

There is some documentation on developing plugins on the web site and the
wiki.

Cheers,
Brett

> -Original Message-
> From: Janne Kario [mailto:[EMAIL PROTECTED] 
> Sent: Sunday, 7 December 2003 11:27 PM
> To: [EMAIL PROTECTED]
> Subject: Overriding plugin version
> 
> 
> Hi,
> 
> I'm using Maven RC1 which comes with maven-jboss-plugin-1.3. 
> I'm about to make modifications to the plugin (and have the 
> diff available to the public). How do I override the built-in 
> dependency that rc1 has to version 1.3 of the jboss plugin? 
> That is how to use my own SNAPSHOT 
> version of the jboss-plugin in my projects.
> 
> * Janne Kario
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


Re: jelly junit javac task classpath, and project dependencies

2003-12-07 Thread Bert van Brakel
thanks but unfortunately that doesn't work ( I'd already tried that ). 
From what I can see the  context created for the jelly script unit 
tests is completely fresh with only the basedir ( and possibly other 
system properties) being included.

At this stage I'll look at using a custom tag to process the project 
file and place the required variables in the context but I'd hoped there 
would already be a solution.

-Bert



[EMAIL PROTECTED] wrote:

classpathref="maven.dependency.classpath" on your javac task.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/


Bert van Brakel <[EMAIL PROTECTED]> wrote on 07/12/2003 08:43:18 PM:

 

I'm using jelly junit to run some of my tests which include using the 
ant:javac task to compile some generated code and I'm wondering how to 
include all the project dependencies in javac's classpath. If anyone 
could point me in the right direction it would be most appreciated, as I 
   

 

haven't been able to find anything on the mail archives. I'm not really 
keen to duplicate the dependencies in each junit test script.

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



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



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


Problems with Checkstyle plugin in RC1, solved by making plugin use checkstyle 3.2 instead of 3.1

2003-12-07 Thread Chad Woolley
Hi,

When I upgraded to RC1, I kept ketting the following checkstyle error:

BUILD FAILED
File.. file:/J:/Documents and 
Settings/Administrator/.maven/plugins/maven-checkstyle-plugin-2.0/
Element... ant:checkstyle
Line.. 127
Column 65
Unable to create a Checker: cannot initialize module TreeWalker - Unable to 
instantiate JavadocStyle
Total time: 11 seconds
Finished at: Sun Dec 07 12:15:34 GMT-07:00 2003

When I ran checkstyle from the command line with checkstyle 3.2, I had no problems

So, I changed to version 3.2 in the checkstyle plugin project.xml:


  checkstyle
  checkstyle
  3.2
  
root
  

Then, everything worked.

I think the plugin needs to be updated to 3.2.

Thanks,
Chad




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


Re: No hrefs getting included from navigation.xml

2003-12-07 Thread Chad Woolley
On Windows this is your \Documents and Settings\userid\.maven dir.

I just installed RC1 on a different machine, DIDN'T delete anything under 
.maven, and I didn't have the problem (hrefs worked).

Don't know what the problem was on the other machine.  I will try it again.

Thanks to everyone for the help.

dion wrote:
Chad,

where are you expanded plugins and cache kept?

By default they're under ${user.home}. That really needs to be creamed to 
have a clean install.




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


Re: jelly junit javac task classpath, and project dependencies

2003-12-07 Thread dion
classpathref="maven.dependency.classpath" on your javac task.
--
dIon Gillard, Multitask Consulting
Blog:  http://blogs.codehaus.org/people/dion/



Bert van Brakel <[EMAIL PROTECTED]> wrote on 07/12/2003 08:43:18 PM:

> I'm using jelly junit to run some of my tests which include using the 
> ant:javac task to compile some generated code and I'm wondering how to 
> include all the project dependencies in javac's classpath. If anyone 
> could point me in the right direction it would be most appreciated, as I 

> haven't been able to find anything on the mail archives. I'm not really 
> keen to duplicate the dependencies in each junit test script.
> 
> Many thanks,
> -Bert
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


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



Overriding plugin version

2003-12-07 Thread Janne Kario
Hi,

I'm using Maven RC1 which comes with maven-jboss-plugin-1.3. I'm about
to make modifications to the plugin (and have the diff available to the
public). How do I override the built-in dependency that rc1 has to
version 1.3 of the jboss plugin? That is how to use my own SNAPSHOT 
version of the jboss-plugin in my projects.

* Janne Kario


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



Re: problem using ftp task from maven.xml

2003-12-07 Thread __matthewHawthorne
You seem to be on the right track.  A shortcut to getting all of your 
dependencies into the classpath so that Ant can find them is:



You're doing this in a more manual way, but I can't see any apparent 
problems.  Maybe try the way that I've suggested and see if it makes a 
difference?

I know that the newer versions of Ant are now using commons-net for the 
FTP task, but in your version it still seems to be searching for 
netcomponents.

I hope this helps, post again if it doesn't.



Ian Kent wrote:
Sorry I wasn't more clear about problem :-(

I receive the following error:
 
 "taskdef class org.apache.tools.ant.taskdefs.optional.net.FTP cannot be
found"

Here is the stack trace:

[DEBUG] Adding reference: maven.dependency.classpath ->
D:\Profiles\IANKENT\.maven\repository\ant\jars\ant-1.5.1.jar;D:\Profiles\IAN
KENT\.maven\repository\ant\jars\ant-optional-1.5.1.jar;D:\Profiles\IANKENT\.
maven\repository\netcomponents\jars\netcomponents-1.3.8a.jar;D:\Profiles\IAN
KENT\.maven\repository\junit\jars\junit-3.8.1.jar;D:\Profiles\IANKENT\.maven
\repository\xdoclet\jars\xdoclet-web-module-1.2b4.jar;D:\Profiles\IANKENT\.m
aven\repository\xdoclet\jars\xdoclet-ejb-module-1.2b4.jar;D:\Profiles\IANKEN
T\.maven\repository\xdoclet\jars\xdoclet-jboss-module-1.2b4.jar;D:\Profiles\
IANKENT\.maven\repository\xdoclet\jars\xdoclet-jmx-module-1.2b4.jar;D:\Profi
les\IANKENT\.maven\repository\ejb\jars\ejb-2.1.jar;D:\Profiles\IANKENT\.mave
n\repository\commons-collections\jars\commons-collections-2.1.jar;D:\Profile
s\IANKENT\.maven\repository\sybase\jars\sybase-jdbc-12.5.1b.jar;D:\Profiles\
IANKENT\.maven\repository\log4j\jars\log4j-1.2.8.jar;D:\Profiles\IANKENT\.ma
ven\repository\dml\jars\comms-junit-tests-1.0.jar;D:\Profiles\IANKENT\.maven
\repository\dml\jars\rms_impl-1.0.jar;D:\Profiles\IANKENT\.maven\repository\
dml\jars\fms_impl-1.0.jar;D:\Profiles\IANKENT\.maven\repository\dml\jars\com
ms-1.0.jar;D:\Profiles\IANKENT\.maven\repository\dml\jars\rms_intf-1.0.jar;D
:\Profiles\IANKENT\.maven\repository\dml\jars\fms_intf-1.0.jar;D:\Profiles\I
ANKENT\.maven\repository\dml\jars\wirelessExtensions_intf-1.0.jar;D:\Profile
s\IANKENT\.maven\repository\dml\jars\wirelessExtensions_impl-1.0.jar;D:\Prof
iles\IANKENT\.maven\repository\dml\jars\commonfaultmgmt-1.0.jar;D:\Profiles\
IANKENT\.maven\repository\ossj\jars\ossj-common-ri-1.0.jar;D:\Profiles\IANKE
NT\.maven\repository\jboss\jars\mft-jca-1.5.jar;D:\Profiles\IANKENT\.maven\r
epository\jboss\jars\jmx-rmi-connector-client-3.2.1.jar;D:\Profiles\IANKENT\
.maven\repository\jboss\jars\jboss-j2ee-3.2.1.jar;D:\Profiles\IANKENT\.maven
\repository\jboss\jars\jboss-system-3.2.1.jar;D:\Profiles\IANKENT\.maven\rep
ository\jboss\jars\jboss-jmx-3.2.1.jar
[available] [VERBOSE] Unable to find src\java to set property
sourcesPresent
[available] [VERBOSE] Unable to find src\test to set property
unitTestSourcesPresent
[DEBUG] Adding reference: maven-classpath -> 
site-ftp:
[echo] transfering site to ...
[taskdef] [DEBUG] Class org.apache.tools.ant.taskdefs.optional.net.FTP
loaded from parent loader

BUILD FAILED
File.. file:/m:/iankent.fw3.3.dml.win/commonapps/adaptation/
Element... ant:taskdef
Line.. 45
Column 90
taskdef class org.apache.tools.ant.taskdefs.optional.net.FTP cannot be found
com.werken.werkz.UnattainableGoalException: Unable to obtain goal [site-ftp]
-- file:/m:/iankent.fw3.3.dml.win/commonapps/adaptation/:45:90:
 taskdef class org.apache.tools.ant.taskdefs.optional.net.FTP
cannot be found
at com.werken.werkz.Goal.fire(Goal.java:646)
at com.werken.werkz.Goal.attain(Goal.java:575)
at
org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:448)
at org.apache.maven.MavenSession.attainGoals(MavenSession.java:348)
at org.apache.maven.cli.App.doMain(App.java:543)
at org.apache.maven.cli.App.main(App.java:1109)
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:551)
at com.werken.forehead.Forehead.main(Forehead.java:581)
org.apache.commons.jelly.JellyTagException:
file:/m:/iankent.fw3.3.dml.win/commonapps/adaptation/:45:90: 
taskdef class org.apache.tools.ant.taskdefs.optional.net.FTP cannot be found
at
org.apache.commons.jelly.impl.TagScript.handleException(TagScript.java:683)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:288)
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:128)
at com.werken.werkz.Goal.fire(Goal.java:639)
at com.werken.werkz.Goal.att

Unable to override a subproject's maven.final.name

2003-12-07 Thread Jefferson K. French
I have a jar:jar preGoal in my master maven.xml file that sets the
maven.final.name property as such:

  

I then run install-snapshot using multiproject, and echo the value of
maven.final.name immediately after setting it. It is correct. But when
I echo it from within the jar:jar goal, maven.final.name contains the
name set by jar:snapshot.

Should I be able to override maven.final.name this way? If so, any
ideas what I could be doing wrong? Since jar:snapshot attains the
jar:jar goal after setting maven.final.name, I figured my preGoal
would override that setting.

Thanks.

Jeff

-- 
mailto:[EMAIL PROTECTED]



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



Re: Unknown goal "multiproject:install-callback"

2003-12-07 Thread Jefferson K. French
I had been using reactor directly from my maven.xml, and decided to
try multiproject again a couple days ago, and it worked. I no longer
get the unknown multiproject goal message. I removed my maven.xml
thinking maybe something there had "fixed" my problem, but it still
worked fine.

I would document this for the FAQ, but I don't have a clue as to what
I did differently. I must have changed something in one of the POMs.
If I figure out what, I'll write something up.

  Jeff

On Thu, 4 Dec 2003, at 23:31:43 [GMT -0600] Jefferson K. French wrote:

> Yes, the  tag exists and is different in all projects.

> On Fri, 5 Dec 2003, at 16:18:19 [GMT +1100 ] Brett Porter wrote:

>> Is  in the subproject different to  in the parent project, or
>> missing?

>> They need to both exist and be different.

>> - Brett

>>> -Original Message-
>>> From: Jefferson K. French [mailto:[EMAIL PROTECTED] 
>>> Sent: Friday, 5 December 2003 4:17 PM
>>> To: Maven Users List
>>> Subject: Re: Unknown goal "multiproject:install-callback"
>>> 
>>> 
>>> Anyone have any ideas on what could be causing an unknown 
>>> goal error for multiproject:install-callback? I've searched 
>>> the email archive and google, but haven't found anything 
>>> about unknown multiproject callback goals.
>>> 
>>> I invoked reactor from maven.xml and installed my jars 
>>> successfully. Maybe I have something wrong with my 
>>> multiproject properties? My properties are:
>>> 
>>>   maven.multiproject.ignoreFailures=false
>>>   maven.multiproject.navigation=aggregate
>>>   maven.multiproject.aggregateDir=
>>>   maven.multiproject.type=jar
>>>   maven.multiproject.includes=*/project.xml
>>>   maven.multiproject.excludes=project.xml
>>> 
>>> and my project layout is like this:
>>> 
>>>   project.xml
>>>   project.properties
>>>   jar-1/
>>> project.xml
>>> src/...
>>>   jar-2/
>>> project.xml
>>> src/...
>>>   jar-3/
>>> projects.xml
>>> src/...
>>> 
>>> Thanks for any pointers.
>>> 
>>>   Jeff
>>> 
>>> On Sat, 29 Nov 2003, at 12:55:21 [GMT -0600] Jefferson K. French
>>> wrote:
>>> 
>>> > I'm trying to use multiproject for the first time, but I'm 
>>> getting an 
>>> > unknown goal error for multiproject:install-callback. I'm not sure 
>>> > what I'm doing wrong, because multiproject's plugin.jelly file does 
>>> > contain an install-callback goal. Has anyone seen this before? It's 
>>> > quite possible I have something setup wrong in my 
>>> subproject POMs, but 
>>> > I don't understand how that could cause the "unknown goal" error.
>>> 
>>> > Here is part of the output log:
>>> 
>>> > $ maven -X multiproject:install
>>> >  __  __
>>> > |  \/  |__ _Apache__ ___
>>> > | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
>>> > |_|  |_\__,_|\_/\___|_||_|  v. 1.0-rc2-SNAPSHOT
>>> 
>>> > ...
>>> > Our processing order:
>>> > MDB Utils
>>> > +
>>> > | Executing multiproject:install-callback MDB Utils
>>> > | Memory: 2M/3M
>>> > +
>>> 
>>> > BUILD FAILED
>>> > File.. 
>>> > 
>>> file:/home/jeff/.maven/plugins/maven-> multiproject-plugin-1.2-SNAPSHOT/
>>> > Element... maven:reactor
>>> > Line.. 184
>>> > Column 9
>>> > Unknown goal "multiproject:install-callback"
>>> > com.werken.werkz.UnattainableGoalException: Unable to 
>>> obtain goal [multiproject:insta
>>> > ll] -- 
>>> file:/home/jeff/.maven/plugins/maven-multiproject-plugin-1.2-S
>> NAPSHOT/:184:9: 
>>>  Unknown goal "multiproject:install-callback"
>>> at com.werken.werkz.Goal.fire(Goal.java:646)
>>> at com.werken.werkz.Goal.attain(Goal.java:575)
>>> at
>> org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:448)
>>> at
>> org.apache.maven.MavenSession.attainGoals(MavenSession.java:348)
>>> at org.apache.maven.cli.App.doMain(App.java:546)
>>> at org.apache.maven.cli.App.main(App.java:1113)
>>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>> at
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
>>> 39)
>>> at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm
>>> pl.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)
>>> ...

>>> Jeff




-- 
mailto:[EMAIL PROTECTED]



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



jelly junit javac task classpath, and project dependencies

2003-12-07 Thread Bert van Brakel
I'm using jelly junit to run some of my tests which include using the 
ant:javac task to compile some generated code and I'm wondering how to 
include all the project dependencies in javac's classpath. If anyone 
could point me in the right direction it would be most appreciated, as I 
haven't been able to find anything on the mail archives. I'm not really 
keen to duplicate the dependencies in each junit test script.

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