Maven 1.1b Junit tests - Threads close down

2006-01-31 Thread Ashley Hurkoo
Hi, I have a Junit test class, mytest and I am executing maven test. In mytest, I am executing multiple threads, when I execute maven test, the threads starts and close down automatically. I have set maven.junit.fork=true(in maven-test-plugin) but I still have the same problem. I believe this is a

Maven 1.1b2 - Junit Tests

2006-01-30 Thread Ashley Hurkoo
Hi does anyone knows what is the equilavent java command for maven test? I believe that the junit test run within maven, and I want to know what java command does maven execute when doing the junit test. The reason I am asking is because I am getting different result while executing "maven test"

[m1.1b2] multiproject, child link to parent page

2005-11-16 Thread Ashley Hurkoo
Hi, is there a way of having a link to the sub project site from the parent project site without explicitly specifying it in the navigation.xml - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

[m2] Changelog problem

2005-11-15 Thread Ashley Hurkoo
I cannot understand why the changelog is saying there are 0 entries because when I do cvs log -d "2005-11-03<2005-11-17" , there Are plenty of entries. The changelog even has a build error. $ mvn -X changelog:changelog + Error stacktraces are turned on. [DEBUG] Building Maven user-level plugin reg

changelog-maven-plugin problem

2005-11-14 Thread Ashley Hurkoo
I am not sure where the error is coming from, it just says FATAL ERROR Also is there a way to run just the changelog plugin instead of of doing mvn site:site and wait forever? org.codehaus.mojo changelog-maven-plugin scm:cvs:pserver:[EMAIL PROT

RE: Javadoc within the maven generated site

2005-11-14 Thread Ashley Hurkoo
It's a known issue, fixed in SVN. On 11/15/05, Ashley Hurkoo <[EMAIL PROTECTED]> wrote: > Does anyone knows how to generate the javadoc in the maven site, > > I did this > > > > > org.apache.maven.plugins > maven-javadoc-plug

Javadoc within the maven generated site

2005-11-14 Thread Ashley Hurkoo
Does anyone knows how to generate the javadoc in the maven site, I did this org.apache.maven.plugins maven-javadoc-plugin It generates the javadoc, but when I click the link on the maven generated site, it does not work. --

Very weird M2 dependency problem

2005-11-13 Thread Ashley Hurkoo
Here is an extract of my pom.xml, I do not have activation-1.0.2 in my dependency list javamail javamail 1.3.2 Once I remove the above depencies in pom.xml, everything works fine but I do

RE: M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
] Sent: Monday, November 14, 2005 1:47 PM To: Maven Users List Subject: Re: M1 to M2 repository problem You created this file? It should ignore it if it does not successfully parse... are you using Maven 2.0 final, or an earlier release (see m2 -v). - Brett On 11/14/05, Ashley Hurkoo <[EMAIL PROTEC

RE: M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
t: Re: M1 to M2 repository problem No, that's not what I mean. You keep saying /jar instead of /jars which you originally said. It sohuld be /jars. Are you using a working m1 repository? Can you post the actual error you get? - Brett On 11/14/05, Ashley Hurkoo <[EMAIL PROTECTED]> wro

RE: M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
ist Subject: Re: M1 to M2 repository problem No, that's not what I mean. You keep saying /jar instead of /jars which you originally said. It sohuld be /jars. Are you using a working m1 repository? Can you post the actual error you get? - Brett On 11/14/05, Ashley Hurkoo <[EMAIL PROTECTE

RE: M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
? -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Monday, November 14, 2005 1:08 PM To: Maven Users List Subject: Re: M1 to M2 repository problem Right. It will be fixed in 2.0.1 and the workaround is to create a dummy pom. On 11/14/05, Ashley Hurkoo <[EMAIL PROTEC

RE: M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
List Subject: Re: M1 to M2 repository problem I assume you are already using the legacy layout and just want to ignore the missing poms. This is a bug that will be addressed in 2.0.1 - the only workaround is to create a dummy pom file. - Brett On 11/14/05, Ashley Hurkoo <[EMAIL PROTECTED]>

M1 to M2 repository problem

2005-11-13 Thread Ashley Hurkoo
In M1 I usually used the repository path to be http://www.ibiblio.org/maven Then m1 would get the jars(e.g.) from http://www.ibiblio.org/maven/ant-contrib/jars/ I still want to keep the same path for M2 and I am still using jar not pom. Everytime I run mvn install, M2 downloads stuff from http:/

RE: Independent Subprojects in Maven

2005-11-07 Thread Ashley Hurkoo
rom the top level and all projects will be compiled, then you can > proceed to test, etc. > > - Brett > > On 11/8/05, Ashley Hurkoo <[EMAIL PROTECTED]> wrote: > > > > I am trying sub project to my main project. For example, I have a > > rental > > proje

RE: Independent Subprojects in Maven

2005-11-07 Thread Ashley Hurkoo
will still not build if car doesn't. Note that if it is just the tests failing, you can run "mvn compile" from the top level and all projects will be compiled, then you can proceed to test, etc. - Brett On 11/8/05, Ashley Hurkoo <[EMAIL PROTECTED]> wrote: > > I am tr

Independent Subprojects in Maven

2005-11-07 Thread Ashley Hurkoo
I am trying sub project to my main project. For example, I have a rental project(main) and I want to add a truck project and a car project which are independent of the Main project. The problem I am having is when I build maven and the car project does not compile, the truck project gets affected