RE: Maven project for a running environment?

2005-01-10 Thread Vincent Massol
Hi Tom, > -Original Message- > From: Tom Bostelmann [mailto:[EMAIL PROTECTED] > Sent: lundi 10 janvier 2005 23:09 > To: Maven Users List > Subject: RE: Maven project for a running environment? > > Any idea when the Maven plug-in will be released? I know that Arnaud Heritier is working on

Handling conflicting JAR version requirements

2005-01-10 Thread Rick Mann
Hi. I'm fairly new to Maven, but over the weekend I got it to build my torque/struts-based webapp, and I'm hooked. Now I'm trying to sell the concept at work, and I've come up with a situation that I'm not sure how to handle. Let's say I'm writing a struts webapp, and that both struts and my ap

Re: Maven project for a running environment?

2005-01-10 Thread Brett Porter
there is also the appserver plugin. I'm more than happy for cargo to replace this when it has maven support though. On Mon, 10 Jan 2005 14:08:41 -0800, Tom Bostelmann <[EMAIL PROTECTED]> wrote: > Any idea when the Maven plug-in will be released? > > -Original Message- > From: Vincent Mas

RE: Maven project for a running environment?

2005-01-10 Thread Tom Bostelmann
Any idea when the Maven plug-in will be released? -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 1:39 PM To: 'Maven Users List' Subject: RE: Maven project for a running environment? Yep, it's doing exactly this :-) -Vincent > -Origi

RE: Maven project for a running environment?

2005-01-10 Thread Vincent Massol
Yep, it's doing exactly this :-) -Vincent > -Original Message- > From: Ryan, Scott [mailto:[EMAIL PROTECTED] > Sent: lundi 10 janvier 2005 22:32 > To: 'Maven Users List' > Subject: RE: Maven project for a running environment? > > You might want to check out the project cargo and see if t

RE: Maven project for a running environment?

2005-01-10 Thread Ryan, Scott
You might want to check out the project cargo and see if there are some ideas there. Scott Damon Ryan Developer (720) 514-5389 [EMAIL PROTECTED] -Original Message- From: Tom Bostelmann [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 2:10 PM To: Maven Users List Subject: Maven pr

RE: How to get Dashboard to run?!

2005-01-10 Thread Vincent Massol
> -Original Message- > From: Siegfried Goeschl [mailto:[EMAIL PROTECTED] > Sent: lundi 10 janvier 2005 19:34 > To: Maven Users List > Subject: Re: How to get Dashboard to run?! > > Arghhh, you got me - the master project is at the same level as the > subproject - now it works ... :-) co

Re: Change a property in a property file

2005-01-10 Thread Eric Black
Hi, I was looking for similar methods but wasn't able to find any way to do what you (and I) are looking for. I've been creating a plugin to handle it, but it is kindof specific for my company's needs. Basically, it does(or will do) the following: 1. uses cvs to get the status(version) of all loc

Maven project for a running environment?

2005-01-10 Thread Tom Bostelmann
Is anyone using Maven to create a running environment like, for instance, CATALINA_BASE? I was wondering if it's possible to have a project that creates a Tomcat running environment that might look like: conf/ logs/ shared/lib/ temp/ webapps/ Then, I'd like to have dependencies for

Change a property in a property file

2005-01-10 Thread Randy Xu
In the ANT days, we used to have build tags that would identify a particular jar files. So a version 2.0 of a project might have several builds: 2.0.1, 2.0.2, etc... We kept the last build tag in a properties file in CVS and updated it with every successful build. In Jelly, you can load proper

Re: calling multiproject:goal launches default goal instead

2005-01-10 Thread Eric Giguere
Hi Randy Yes, got an idea. I have personnaly been playing with the multiproject plugin and got tired of trying to control it from a maven script. If you want to do that kind of processing, you better call the reactor yourself instead of going through the multiproject. From what I understand of

Re: How to get Dashboard to run?!

2005-01-10 Thread Siegfried Goeschl
Arghhh, you got me - the master project is at the same level as the subproject - now it works ... :-) The only thing which does not work is capturing the CLOVER results. I have CLOVER reports but the "dashboard-single.xml" shows 7 0 - - - Looking at the plugin it looks for a "clover.xml

RE: How to get Dashboard to run?!

2005-01-10 Thread Vincent Massol
> -Original Message- > From: Siegfried Goeschl [mailto:[EMAIL PROTECTED] > Sent: lundi 10 janvier 2005 18:26 > To: Maven Users List > Subject: Re: How to get Dashboard to run?! > > Hi Vincent, > > well, I have multiple subproject using a Master POM but I'm don't use > Reactor/Multiproje

Re: How to get Dashboard to run?!

2005-01-10 Thread Siegfried Goeschl
Hi Vincent, well, I have multiple subproject using a Master POM but I'm don't use Reactor/Multiproject for the complete build due to memory leaks (I think they are still there). But I use a reactor to create a master webpage with Velocity. So I assumed the first step is "Solution 1 - Registerin

Re: Stale subproject jar files in repository

2005-01-10 Thread Randy Xu
Ah, thanks. So I assume it checks the timestamp of the file, right? -Randy Ryan Sonnek wrote: I would suggest changing the project currentVersion to 2.1-SNAPSHOT, and your dependency versions to SNAPSHOT. snapshot dependencies are handles differently, and always look for a newest version. -Or

RE: How to get Dashboard to run?!

2005-01-10 Thread Vincent Massol
Hi Siegfried, You'll need to verify that the each subproject properly collects the data. Check if there's a dashboard-single.xml file in them. The content of these files are then collated at the top level in a dashboard-data.xml file. If you don't have any of these files, it means that you've not

RE: Stale subproject jar files in repository

2005-01-10 Thread Ryan Sonnek
I would suggest changing the project currentVersion to 2.1-SNAPSHOT, and your dependency versions to SNAPSHOT. snapshot dependencies are handles differently, and always look for a newest version. -Original Message- From: Randy Xu [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 10

Re: Stale subproject jar files in repository

2005-01-10 Thread Randy Xu
First of all Dion, kudos to you and your book. It seems like it'll be because of people like you that Maven is really taking off. Now then, to my question. I have three subprojects: * app-lib * app-jms (depends on lib) * app-gui (depends on lib and jms) Everything in the project versions in lo

How to get Dashboard to run?!

2005-01-10 Thread Siegfried Goeschl
Hi folks, I try to get the Dashboard plugin running (1.6 on Maven 1.0.2 on Windows XP) on my project. I started with a single project +) I added the dashboard-plugin to my Master POM and created the site +) Looking at the plugin the default configuration should be fine +) A dashboard report is ad

calling multiproject:goal launches default goal instead

2005-01-10 Thread Randy Xu
Hi, I've been getting this a lot on my multiproject. From my multiproject root - I set a goal and run multiproject:goal like so: Then I define the goal name, also in my multiproject root (should be inherited): blah Instead of running move-ejb-descriptors

Re: eclipse:generate-classpath and multiproject

2005-01-10 Thread Nicolas De Loof
Solved : I had to set maven.eclipse.output.dir = ${basedir}/target/classes ${basedir} is required to work as a multiproject goal Nico. Nicolas De Loof a écrit : Hi, I'm trying to use multiproject to build Eclipse .classpath for all my subprojects (as some commons dependencies have been updated)

Conditional dependencies

2005-01-10 Thread Hallingstad Håkon
I have a for an EJB jar that should only be present if packaging for the "WAS" userdefined goal. How may I include/exlude dependencies? Regards, Håkon Hallingstad Software Developer, EDB +47 2252 8218 [EMAIL PROTECTED] www.edb.com "IT er ikke alt - men det hjelper" --

eclipse:generate-classpath and multiproject

2005-01-10 Thread Nicolas De Loof
Hi, I'm trying to use multiproject to build Eclipse .classpath for all my subprojects (as some commons dependencies have been updated) The generated .classpath has an error : output is set to D:/workspace/target/classes When run in the subproject (without multiproject goal) it runs fine -> out

Re: Maven moving .properties files

2005-01-10 Thread Louis Burroughs
OK, removing them from the section did stop my .properties from being copied to the root directory. Now they are not being copied over at all. Is there a way with the current war builder plugin to have these files moved with their directory structure intact? Louis M. Burroughs III, OCTO

downloading plugins in maven, and managing their versions

2005-01-10 Thread Ganesh . K . Rao
Return Receipt Your downloading plugins in maven, and managing their versions document :

downloading plugins in maven, and managing their versions

2005-01-10 Thread Benedict Heal
1. I want to ensure that all users have the necessary plugins, without their having to resort to command-line incantations. It would seem that I could either have a sub-project - e.g. "installPlugins" which expressed by dependencies of type 'plugin' what was wanted, or I

Re: SCM 1.5 beta plugin

2005-01-10 Thread Massimo
On Mon, 10 Jan 2005 09:16:55 +1100, Brett Porter <[EMAIL PROTECTED]> wrote: > > If the URL is set to: > https://myhost.mydomain/repos/mainproject/subproject/trunk > in project.xml, then the default should work (if not, its a bug). > As you said and as expected correcting that URL fix everything