RE: releasing 2.0.10?

2009-01-27 Thread Brian E. Fox
Normally I would agree on the late change, but it's entirely optional usage so it wouldn't affect existing builds and I'd like to start thinking about 2.0.10 being the EOL for 2.0.x. -Original Message- From: Brett Porter [mailto:br...@porterclan.net] On Behalf Of Brett Porter Sent: Tuesday

Re: releasing 2.0.10?

2009-01-27 Thread Brett Porter
On 27/01/2009, at 1:45 PM, Brian E. Fox wrote: Yes, I was actually waiting to look at the stuff oleg put into 2.1 as I think this should be considered for 2.0.10. It's a bit late in the cycle to make a major change again IMO, especially since this has become a bogey release. I fixed

RE: releasing 2.0.10?

2009-01-27 Thread Brian E. Fox
Yes, I was actually waiting to look at the stuff oleg put into 2.1 as I think this should be considered for 2.0.10. I fixed up the enforcer bugs, I think it was just waiting for the parent to be released for the new skin. On 2.1.0, I think we should just release what's there as 2.1.0, many people

releasing 2.0.10?

2009-01-27 Thread Brett Porter
Hi, It looks like John fixed up the last issue for this a few days ago and Benjamin took care of the shade plugin over Christmas. Brian - did you want to roll another RC? I'll try and get back to the enforcer and 2.1.0-M2 over the next couple of weeks now that I'm finally caught up after

Re: password encryption in 2.1.x trunk

2009-01-27 Thread Oleg Gusakov
Looks like the name sec.xml is too short and may be confusing. Changing for encryption-settings.xml Oleg Gusakov wrote: After a long and interesting discussion last August (http://docs.codehaus.org/display/MAVEN/Secured+Passwords) and several meetings with users, I felt it's overdue to do the

password encryption in 2.1.x trunk

2009-01-27 Thread Oleg Gusakov
After a long and interesting discussion last August (http://docs.codehaus.org/display/MAVEN/Secured+Passwords) and several meetings with users, I felt it's overdue to do the actual implementation. I massaged my old, vintage 2007 code and put it into 2.1.x trunk. How it all works - more detaile

Re: Programmatically adding dependencies to a MavenProject

2009-01-27 Thread Jason van Zyl
On 27-Jan-09, at 12:32 AM, Costin Caraivan wrote: Richard van Nieuwenhoven-2 wrote: Hi, i also had this problem, and yes Jason is right don't do it! You will have all sorts of follow up problems (like some other plugins not working). It will work for the normal stuff, but be sure to start

Re: Programmatically adding dependencies to a MavenProject

2009-01-27 Thread Jason van Zyl
Look at Tycho: http://docs.codehaus.org/display/M2ECLIPSE/Tycho+user+docs Igor can help you with making bundles. On 26-Jan-09, at 11:18 PM, Costin Caraivan wrote: Jason van Zyl-5 wrote: This is a bad idea and don't count on Maven 3.x supporting this because it makes determining what the de

[ANN] Registration for ApacheCon Europe 2009 is now open!

2009-01-27 Thread Brian E. Fox
-Original Message- From: ApacheCon EU 2009 [mailto:curc...@apache.org] Sent: Tuesday, January 27, 2009 9:04 AM To: annou...@apache.org Subject: [ANN] Registration for ApacheCon Europe 2009 is now open! ApacheCon EU 2009 registration is now open! 23-27 March -- Mövenpick Hotel, Amsterdam

RE: Artifact.getVersion()

2009-01-27 Thread Brian E. Fox
That was fixed back in 2.0.8: http://jira.codehaus.org/browse/MNG-2961 -Original Message- From: Simone Gianni [mailto:simo...@apache.org] Sent: Tuesday, January 27, 2009 8:35 AM To: Maven Developers List Subject: Re: Artifact.getVersion() I found the solution casually looking at the sou

Re: Artifact.getVersion()

2009-01-27 Thread Simone Gianni
I found the solution casually looking at the source code of the surefile plugin : [quote] surefireArtifact.isSnapshot(); // TODO: this is ridiculous, but it fixes getBaseVersion to be -SNAPSHOT if needed [/quote] And yes, it seems to work! :) Simone Brian E. Fox wrote: It's SNAPSHOT

Re: create war and jar files at same time.

2009-01-27 Thread Yves Dessertine
Is it an acceptable solution for you, to create one more subproject generating a jar. And then make the war-project depend on your jar ? PS : don't crosspost on dev and users (this questions has nothing to do with dev, don't ?) Yves 2009/1/27 Minhaj : > Hi, > > i am working on maven;s multi modu

Re: Programmatically adding dependencies to a MavenProject

2009-01-27 Thread Costin Caraivan
Richard van Nieuwenhoven-2 wrote: > > Hi, > > i also had this problem, and yes Jason is right don't do it! You will > have all sorts of follow up problems (like some other plugins not > working). It will work for the normal stuff, but be sure to start your > plugin in the validate phase. >

Re: Programmatically adding dependencies to a MavenProject

2009-01-27 Thread Richard van Nieuwenhoven
Hi, i also had this problem, and yes Jason is right don't do it! You will have all sorts of follow up problems (like some other plugins not working). It will work for the normal stuff, but be sure to start your plugin in the validate phase. Now i use a custom repository layout / repository t

create war and jar files at same time.

2009-01-27 Thread Minhaj
Hi, i am working on maven;s multi module project i have three modules with three pom.xml files all of them generating war files successfully and i want to generate a jar file as well for one of the module. i am confuse that how can we define two times the tag in same pom.xml file. it can be don