Re: preserving order of dependencies

2010-03-10 Thread Brian Fox
e any way to specify order of jar files in pom.xml? > I understand that shuffling or jars makes you stronger, but still, > Java is sensitive to order of libraries, why not support this in maven? > -- > View this message in context: > http://old.nabble.com/preserving-order-of-dependenc

Re: preserving order of dependencies

2010-03-10 Thread Justin Edelson
; pom.xml > Is there any way to specify order of jar files in pom.xml? > I understand that shuffling or jars makes you stronger, but still, > Java is sensitive to order of libraries, why not support this in > maven? > -- > View this message in context: > http://old.na

RE: preserving order of dependencies

2010-03-10 Thread Vladimir Jigounov
is in maven? -- View this message in context: http://old.nabble.com/preserving-order-of-dependencies-tp20123426p27856602.html Sent from the Maven Developers mailing list archive at Nabble.com. - To unsubscribe, e-mail: dev-uns

RE: preserving order of dependencies

2008-10-26 Thread nick pellow
local pom takes precedence. > > -Original Message- > From: Nick Pellow [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 22, 2008 10:38 PM > To: dev@maven.apache.org > Subject: preserving order of dependencies > > Hi, > > I am developing a maven plugin which needs to a

RE: preserving order of dependencies

2008-10-23 Thread Brian E. Fox
precedence. -Original Message- From: Nick Pellow [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 10:38 PM To: dev@maven.apache.org Subject: preserving order of dependencies Hi, I am developing a maven plugin which needs to add a dependency to the javac and surefire classpaths

preserving order of dependencies

2008-10-22 Thread Nick Pellow
Hi, I am developing a maven plugin which needs to add a dependency to the javac and surefire classpaths. Using: final Set set = getProject().getDependencyArtifacts(); set.add( myArtifact ); getProject().setDependencyArtifacts( set ); seems to work most of the time. In certain situations how