scm goal uses -C option with is not MacOSx friendly

2004-02-20 Thread Sebastien Sahuc
Somehow the -C option is used in the scm:prepare-release, which unfortunately is not available in the cvs shipped by default with MacOSX. See below for the result. Should I file a new entry in Jira ? Seb [dhcp121 xml]$ maven scm:prepare-release __ __ | \/ |__ _Apache__ ___ | |\/| / _` \

Re: exception running clean test goals ...

2004-02-20 Thread Sebastien Sahuc
That's what I did this no later than this morning with the MAVEN-1_0-BRNCH Do you know what's happening ? plugin cache issue ? Seb On Feb 20, 2004, at 2:17 PM, Sean Kelly wrote: Here is the error with a fresh CVS update. Is there any place I could look at to fix it ? I got the same error.

exception running clean test goals ...

2004-02-20 Thread Sebastien Sahuc
Here is the error with a fresh CVS update. Is there any place I could look at to fix it ? Caused by: org.apache.maven.plugin.UnknownPluginException: Unknown plugin "maven -xdoc-plugin"ââ â Thanks, Sebastien Full stack trace: java

Re: SCM pluging is broken --> java.lang.ClassNotFoundException: log

2004-02-20 Thread Sebastien Sahuc
Please discard my question. Just did an update this morning and it seems to work fine now. Seb On Feb 20, 2004, at 10:03 AM, Sebastien Sahuc wrote: Any idea where this issue comes from. I'm on rc2 from cvs, and never ran the scm plugin before before. the goal I tried was scm:u

SCM pluging is broken --> java.lang.ClassNotFoundException: log

2004-02-20 Thread Sebastien Sahuc
Any idea where this issue comes from. I'm on rc2 from cvs, and never ran the scm plugin before before. the goal I tried was scm:update-project Thanks a lot, Sebas java.lang.ClassNotFoundException: log at java.net.URLClassLoader$1.run(URLClassLoader.java:199) at java.security.

Re: multiproject site generation - maven reports

2004-02-19 Thread Sebastien Sahuc
That's not true. Our report are described in the master project.xml and are properly inherited by the subproject when doing the multiroject:site goal. That being said, I'm suspecting a cache issue. Here is what I noticed: sometimes the site is not properly generated and aggregated, even th

Re: Project Properties and "extends"

2004-02-17 Thread Sebastien Sahuc
We are looking for the same feature. Here is what we did locally by patching maven code. Our project.properties for each project can include a master project.properties using the following line: project.properties of the project == @../master/master_project.properties = === master_pro

Re: multiproject and an Unknown plugin "maven-java-plugin"...

2004-02-17 Thread Sebastien Sahuc
PM, Brett Porter wrote: Does the java plugin exist in ~/.maven/plugins? If not, your bootstrap was faulty. IF so, this is a bug I have introduced recently. - Brett -Original Message- From: Sebastien Sahuc [mailto:[EMAIL PROTECTED] Sent: Wednesday, 18 February 2004 11:48 AM To: Maven

multiproject and an Unknown plugin "maven-java-plugin"...

2004-02-17 Thread Sebastien Sahuc
I just rebuild the latest 1.0 branch of maven with the HEAD of maven-plugins, however when I run a 'maven multiproject:site' on a master build (2 dep projects), here is what I get in the trace, although it doesn't fail the whole thing. What does it mean ? What did I miss ? And where should

Re: Unit testing question

2004-02-17 Thread Sebastien Sahuc
I'm not surprised to hear your singleton class is being instanciated more than once. This is due to the fact the maven create a separate classloader for each TestCase it finds and executes. There is two way to quickly solve your problem. First would be to aggregate all test cases that use the s

Re: first-timer build error

2004-02-17 Thread Sebastien Sahuc
e, this is truly appreciated. Seb On Feb 17, 2004, at 8:47 AM, Emmanuel Venisse wrote: Apparently, you redefine repository address. Your protocol definition is incorrect. You use file:// instead of file:/// (or eventually file:/) Emmanuel - Original Message ----- From: "Sebastien

Re: first-timer build error

2004-02-17 Thread Sebastien Sahuc
Thanks Sean, I'm glad to hear I'm not the only person getting this weird exception. And yes, my home dir is /Users/sebastiensahuc, which might help hinting the issue. Good catch ! Seb On Feb 17, 2004, at 8:43 AM, Sean Kelly wrote: with a very strange Caused by: java.net.UnknownHostException:

Re: first-timer build error

2004-02-17 Thread Sebastien Sahuc
Hi Emmanuel, I'm so relieved to hear that other have the same issue building maven from CVS. I had no luck understanding which maven and maven-plugins to checkout to get the whole thing building shamelessly. As a matter of fact I took a cvs snapshot from feb 9 for both project (HEAD branch),

Re: How to set -Xmx to the forked JVM running junit ?

2004-02-12 Thread Sebastien Sahuc
Sorry guys, turns out to be documented in the test plugin as porperties: maven.junit.jvmargs=-Mmx246m Should work fine. On Feb 12, 2004, at 1:12 PM, Sebastien Sahuc wrote: How to set -Xmx to the forked JVM running junit ? I'm getting an outof memory excpetion no matter how much I se

How to set -Xmx to the forked JVM running junit ?

2004-02-12 Thread Sebastien Sahuc
How to set -Xmx to the forked JVM running junit ? I'm getting an outof memory excpetion no matter how much I set the -Xmx value through MAVEN_OPTS. The trace shows me that the forked VM that runs the JUnit suite is not inheriting the -Xmx option at all. How could I do that ? thanks Seba