Re: How to pass arguments to JVM

2003-12-04 Thread Nicolas De Loof
Thank you, it works fine. Nico. Your commandline for javadoc is too long, you need to use a file to intermediate. Simply set the property maven.javadoc.useexternalfile to true in your project.properties, and that should clear it up. Nick -Original Message- From: Nicolas De Loof

Re: maven site : Too many open files

2003-12-04 Thread Emmanuel Venisse
Hi, Some users have this problem with big project. I think it's due to jxr plugin that doesn't close stream in JavaFileImpl class in the parse method. I don't have time for correct this, but if you can try to write a patch for it and test it with your big project, it will be cool. Emmanuel

Re: maven site : Too many open files

2003-12-04 Thread Joakim Erdfelt
Nicolas De Loof wrote: I get troubles generating doc-site in a (big) webapp : I get lot's of Caught java.io.IOException: Too many open files processing xref/com Move the jxr plugin to the top of the reports section in your project.xml. It worked for our 4500+ java file project. (and we

Re: maven site : Too many open files

2003-12-04 Thread Nicolas De Loof
Ca peut peut-etre aider ... - Original Message - From: Emmanuel Venisse [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 3:58 PM Subject: Re: maven site : Too many open files I'll apply the Nicolas patch for reduce a little open files.

Re: [REPOST] How to declare compile-time / run-time dependencies

2003-12-04 Thread Jason van Zyl
On Thu, 2003-12-04 at 09:55, Nicolas De Loof wrote: Does anybody have a suggestion for this ? It is now handled here: http://cvs.apache.org/viewcvs.cgi/maven-components/maven-model/ And will be integrated in 1.1. For now the best you can do is added properties to your dependencies and add

Re: maven site : Too many open files

2003-12-04 Thread Emmanuel Venisse
I'll apply the Nicolas patch for reduce a little open files. Emmanuel - Original Message - From: Joakim Erdfelt [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Thursday, December 04, 2003 1:55 PM Subject: Re: maven site : Too many open files Nicolas De Loof wrote: I

RE: Solution?

2003-12-04 Thread Francois Beauregard
Thanks, is there an example of a Maven script that uses velocity or JSL to do this kind of substitution somewhere that I can look at. Thanks, François -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: December 4, 2003 1:34 AM To: 'Maven Users List' Subject: RE:

Re: Can Maven work with Ant versions newer than 1.5?

2003-12-04 Thread Jason van Zyl
On Thu, 2003-12-04 at 07:43, Amnon Khen wrote: Hi, Can Maven work with Ant versions newer than 1.5? Not yet but that is something which will be changed for 1.1 where the core of Maven will not be at all coupled to Ant or Jelly. So if you need specific Ant functionality within a plugin (or your

RE: Solution?

2003-12-04 Thread Erdfelt, Joakim
From: Francois Beauregard [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 8:20 AM Thanks, is there an example of a Maven script that uses velocity or JSL to do this kind of substitution somewhere that I can look at. Thanks, François Assume you have a file in your source

Re: maven site : Too many open files

2003-12-04 Thread Nicolas De Loof
That works ! I just had to disable linkcheck because I got OutOfMemory. thanks. Nico. Nicolas De Loof wrote: I get troubles generating doc-site in a (big) webapp : I get lot's of Caught java.io.IOException: Too many open files processing xref/com Move the jxr plugin to

RE: maven site : Too many open files

2003-12-04 Thread Erdfelt, Joakim
From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: 04 December 2003 14:09 That works ! I just had to disable linkcheck because I got OutOfMemory. thanks. Nico. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 9:12 AM You can

Re: maven site : Too many open files

2003-12-04 Thread Nicolas De Loof
I tried with -Xmx1024m and it fails Out of memory. Why is linkcheck such a memory consumer ? Nico. From: Nicolas De Loof [mailto:[EMAIL PROTECTED] Sent: 04 December 2003 14:09 That works ! I just had to disable linkcheck because I got OutOfMemory. thanks.

[REPOST] How to declare compile-time / run-time dependencies

2003-12-04 Thread Nicolas De Loof
Does anybody have a suggestion for this ? Hi, My project has some dependencies that are needed for test classes (compile/build-time) but not at runtime : junit, cactus, easymock ... How to set my project.xml so that they aren't visible in generated doc as dependencies, so that users can

Building WARS - a few questions

2003-12-04 Thread Brian Burridge
Currently we do our builds with ANT, but I am attempting to move to Maven. During our deploy, depending on the ANT target you have chosen, it copies files from different directories into the target before building the WAR. What do you recommend I do in Maven to accomplish building a WAR with

Re: Building WARS - a few questions

2003-12-04 Thread Charles N. Harvey III
Brian, I have just spent the past 3 days converting a bunch of my projects from Ant to Maven. Its not that tough, you just have to get used to it. For starters, there is a war target for Maven. Also a war:webapp. These bundle up files in: project-home/src/webapp/ And, it takes anything in:

Re: Maven related blog aggregation

2003-12-04 Thread Jason van Zyl
On Thu, 2003-12-04 at 17:51, Jason van Zyl wrote: Howdy, If anyone has blogs that relate to Maven then send me a link to your blog as Bob is setting up a little aggregator to making find Maven related blogs stuff easier to find. And you can use my sentence construction above as an example

Re: Building WARS - a few questions

2003-12-04 Thread __matthewHawthorne
I just got this to work myself. If you haven't already, be sure to take a look at the war plugin's documentation http://maven.apache.org/reference/plugins/war Maven's war:webapp goal puts all of the included files into target/${pom.artifactId}. (or something similar to this). For extra

RE: How to pass arguments to JVM

2003-12-04 Thread dion
Maybe we should consider setting this as the default, rather than allowing it to fail? What do others think? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ [EMAIL PROTECTED] wrote on 04/12/2003 03:57:04 AM: Your commandline for javadoc is too long,

RE: How to pass arguments to JVM

2003-12-04 Thread Jason van Zyl
On Thu, 2003-12-04 at 19:34, [EMAIL PROTECTED] wrote: Maybe we should consider setting this as the default, rather than allowing it to fail? What do others think? Any default behaviour that causes less failure and suprise gets a big +1 -- dIon Gillard, Multitask Consulting Blog:

Re: velocity:merge tag

2003-12-04 Thread Jason van Zyl
On Thu, 2003-12-04 at 20:59, Francois Beauregard wrote: I am trying to use the velocity:merge tag as described in : http://www.mail-archive.com/[EMAIL PROTECTED]/msg04501.html project default=war xmlns:velocity=jelly:org.apache.commons.jelly.tags.velocity.VelocityTagLibr ary

Re: Unknown goal multiproject:install-callback

2003-12-04 Thread Jefferson K. French
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

RE: Unknown goal multiproject:install-callback

2003-12-04 Thread Brett Porter
Is id in the subproject different to id 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

Re: Unknown goal multiproject:install-callback

2003-12-04 Thread Jefferson K. French
Yes, the id tag exists and is different in all projects. On Fri, 5 Dec 2003, at 16:18:19 [GMT +1100 ] Brett Porter wrote: Is id in the subproject different to id in the parent project, or missing? They need to both exist and be different. - Brett -Original Message- From:

Re: Javadoc Linking - !!Baffling!!

2003-12-04 Thread Alain Javier Guarnieri del Gesu
* [EMAIL PROTECTED] [EMAIL PROTECTED] [2003-12-02 08:10]: Alain Javier Guarnieri del Gesu [EMAIL PROTECTED] wrote on 30/11/2003 06:42:35 PM: * Alain Javier Guarnieri del Gesu [EMAIL PROTECTED] [2003-11-28 23:55]: * Alain Javier Guarnieri del Gesu [EMAIL PROTECTED] [2003-11-27

Bootclasspath

2003-12-04 Thread Alain Javier Guarnieri del Gesu
How does one specify the the bootclasspath to the java task? I don't see it in the java plugin code. I've hard coded my custom bootclasspath into a copy of the plugin. Even better than setting a bootclasspath would be the ability to prepend jars to the bootclasspath specified by javac. I'm on OS