pom.licenses

2004-03-08 Thread Milos Kleint
Hello, I would like to ask what is the relationship between the maven.license.licenseFile property and the subsection in the project file. to describe my problem in more detail. I'm building an nbm plugin, plugin to create netbeans module files. there's two issues here 1. a module can consist of

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: http://server.com";> ]> ... &pomBaseUrl;/adept-open ... -Brian On Mar 8, 2004, at 5:04 PM, Hensley, Richard

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 9:47 PM Subject: Re: dist:deploy where and how ? > Le Lundi 08 Mars 2004 11:51, Emmanuel Venisse a écrit : > > I updated the deploy plugin. for support m

Re: Newbie question

2004-03-08 Thread dion
"Hensley, Richard" <[EMAIL PROTECTED]> wrote on 09/03/2004 12:04:42 PM: > I'm trying to use maven to build a master site with multiple subprojects, > like db.apache.org http://maven-plugins.sourceforge.net does this using the multiproject plugin. [snip] > default_projects.xml > > > > 3

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: 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 th

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 dont

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 P

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: POM inheritance

2004-03-08 Thread Jason van Zyl
On Mon, 2004-03-08 at 13:42, John Casey wrote: > 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... Arbitrary levels of inheritance works well and is tested in

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, JÃrn Gebhardt wrote: > Hi, > is it possible that the project inheritance wor

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: 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 wsanttasks.jar.

j2ee ear and maven reactor

2004-03-08 Thread Michele_Forte
I am in the process to package my modules (jars, ejbs and wars) to generate a j2ee application. Each of them from the maven point of have their project.xml and specific maven.xml file. Now when I call the generation of the ear if a module has not in advance being built I got an error. And I must f

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 artif

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 will

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 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 > keyf

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 ---

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 N

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 whe

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
OK, I think that ant exec task add some quotes if executable string contains spaces. So, it execute "/usr/bin/ssh -p XXX" You can modify the deploy plugin and add to it a ssh parameter. Emmanuel - Original Message - From: "Herve AGNOUX" <[EMAIL PROTECTED]> To: "Maven Users List" <[EMAI

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 distributions.

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 : > > >