Re: dist:deploy where and how ?

2004-03-08 Thread Emmanuel Venisse
- Original Message - From: Herve AGNOUX [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Monday, March 08, 2004 8:30 AM Subject: Re: dist:deploy where and how ? Le Samedi 06 Mars 2004 22:39, Emmanuel Venisse a écrit : Perhaps with this properties :

Re: dist:deploy where and how ?

2004-03-08 Thread Herve AGNOUX
Le Lundi 08 Mars 2004 09:13, Emmanuel Venisse a écrit : It's not nessary to define -l and server address. This parameters are added by plugin. Ok, but the result is always the same ; the property : maven.ssh.executable=/usr/bin/ssh -p xxx gives : [echo] Moving

Re: dist:deploy where and how ?

2004-03-08 Thread Emmanuel Venisse
OK, I think that ant exec task add some quotes if executable string contains spaces. So, it execute /usr/bin/ssh -p XXX rest of command line You can modify the deploy plugin and add to it a ssh parameter. Emmanuel - Original Message - From: Herve AGNOUX [EMAIL PROTECTED] To: Maven

RE: Download of SNAPSHOT-Plugins

2004-03-08 Thread Martin Lambert
Hi, I found peoples thoughts on this subject very useful. I am trying to think about the further implications of multiple snapshot versions. I am under the impression that Maven's SNAPSHOT mechanism only works where you have a dependency's version set to 'SNAPSHOT'. If this is the case then in

Re: dist:deploy where and how ?

2004-03-08 Thread Emmanuel Venisse
I updated the deploy plugin. for support maven.ssh.args and maven.scp.args properties Could you test it? Emmanuel - Original Message - From: Emmanuel Venisse [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Monday, March 08, 2004 9:53 AM Subject: Re: dist:deploy where and

unit test javadoc

2004-03-08 Thread nicolas De Loof
Hi all, is they're a simple way (properties or preGoal) to use the javadoc plugin to build javadoc for my unit test classes ? Test is described in it and I would like to have a printable version of this that I can join to test-reports. This way I can use it to agree with our QC way of work

ssh cvs

2004-03-08 Thread Stefan Groschupf
Hi, sorry does someone know how to use extssh cvs authentication without a keyfile? My cvs has only ssh2 access but use passwords instead of key files. As i read in the documentation the .cvspass file only works with pserver. Any ideas for a workaround? Thanks for any hints. Stefan

Re: ssh cvs

2004-03-08 Thread Emmanuel Venisse
You can use a ssh agent. Emmanuel - Original Message - From: Stefan Groschupf [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Monday, March 08, 2004 1:18 PM Subject: ssh cvs Hi, sorry does someone know how to use extssh cvs authentication without a keyfile? My

Re: xdoc performance/memory issues

2004-03-08 Thread Joshua Sherwood
Eric Giguere wrote: Hi Joshua Yep, experienced it. The only work around I can think of is to increase again the Xmx parameter. I hit it not with CVS but with checkstyle report... 114 450 errors generated quite a report :). Not very practical... my browser (Mozilla rules!) never managed to open

Re: ssh cvs

2004-03-08 Thread Brian Enigma
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Out of the box, ssh supports both key files and passwords--using the key files if they exist, then falling back to passwords if they do not (or if the keys are incorrect). It is not an either/or configuration. Disabling key files takes a

RE: Download of SNAPSHOT-Plugins

2004-03-08 Thread Jean-Marc Lavoie
I will take a look at what exactly can be done when I found 2 (ok, 20) minutes. Basically there do not seem to have direct support for multiple snapshot as the artifact plugin seem to simply add the snapshot tag at the end. But you may probably emulate it by including version number in the

Re: Anyone working on WebSphere AppServer 5.0 Plugin?

2004-03-08 Thread Gautham Pamu
Hi Richard, I am new to Maven, but even I am interested to install my ear file on WAS 5.0 after the maven build is completed, if you have a goal in maven.xml for installing/configuring/operating on WAS 5.0, can you send some goals and instructions on how to setup the project to use

POM inheritance

2004-03-08 Thread Jörn Gebhardt
Hi, is it possible that the project inheritance works only over one level (at least in RC1)? I.e. if project B inherits from project A and a project C inherits from project B (A - B - C) project C doesn't inherit groupID, dependencies etc. from project A? Best regards, Joern

Re: POM inheritance

2004-03-08 Thread John Casey
This has been my experience. I'm not sure it's being addressed for future releases, but I think it's safe to say that cleaner inheritance won't be implemented in maven until post-1.0... -john On Mon, 2004-03-08 at 12:14, Jrn Gebhardt wrote: Hi, is it possible that the project inheritance works

maven.compile.src.set

2004-03-08 Thread Roland Berger
Hi all I would like to set the 'maven.compile.src.set' property but don't know how to set it. I tried this in project.properties: maven.compile.src.set=${maven.src.dir},${persistent.src.dir} ^ AND maven.compile.src.set=${maven.src.dir};${persistent.src.dir}

Re: ssh cvs

2004-03-08 Thread Gareth Cronin
As the previous post said, you can use ssh-agent, or (and not really a good idea, but I guess it's the same as using .cvspass) you can generate a key-pair with an empty pass-phrase. Then you won't be prompted for a password when you make a successful connection. Brian Enigma wrote: -BEGIN

Re: dist:deploy where and how ?

2004-03-08 Thread Herve AGNOUX
Le Lundi 08 Mars 2004 11:51, Emmanuel Venisse a écrit : I updated the deploy plugin. for support maven.ssh.args and maven.scp.args properties Could you test it? I'm sorry, I understand nothing. I have downloaded the plugin from http://maven.apache.org/reference/plugins/deploy/, but I

Re: dist:deploy where and how ?

2004-03-08 Thread Incze Lajos
On Mon, Mar 08, 2004 at 09:47:13PM +0100, Herve AGNOUX wrote: Le Lundi 08 Mars 2004 11:51, Emmanuel Venisse a écrit : I updated the deploy plugin. for support maven.ssh.args and maven.scp.args properties Could you test it? I'm sorry, I understand nothing. I have downloaded the plugin

Newbie question

2004-03-08 Thread Hensley, Richard
I'm trying to use maven to build a master site with multiple subprojects, like db.apache.org I've worked out all the kinks, except one. The machine that the site lives on is likely to move. So, I wanted to define the base url somewhere globally and then base the rest of my url's from there. This

Re: Newbie question

2004-03-08 Thread Brian Enigma
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 A little more complex and slightly less straightforward, I would assume you could do this using XML entity trickery. For instance: !DOCTYPE project [ !ENTITY pomBaseUrl http://server.com; ] project ... urlpomBaseUrl;/adept-open/url ...