Maven Release release:prepare / perform etc.

2009-03-30 Thread Karl Heinz Marbaise
Hi there, i have a project which is building etc. with mvn clean package etc. Now i would like to do a mvn release:prepare answering questins: like release Version 1.0.0 and the tag name etc. but it's comming up that during the release:prepare cycle Maven want to download artifact like

Re: Maven Release release:prepare / perform etc.

2009-03-30 Thread David C. Hicks
Hey Karl, This issue has been coming up quite a bit, lately. Some will disagree with me, but here is my solution to this problem. mvn release:prepare -DpreparationGoals=clean install The release:prepare normally only does a packaging, so the install step never happens. It really should

Re: Maven Release release:prepare / perform etc.

2009-03-30 Thread Karl Heinz Marbaise
Hi David, first thanks for your fast answer... Hey Karl, This issue has been coming up quite a bit, lately. Hm...my english seemed to be no good enough to understand this... Some will disagree with me, but here is my solution to this problem. mvn release:prepare

Re: Maven Release release:prepare / perform etc.

2009-03-30 Thread Karl Heinz Marbaise
Hi David, sorry.. a second one... mvn release:prepare -DpreparationGoals=clean install In my opinion this couldn't work, cause the goal clean tries to download things from local repository (like xy-1.0.0.pom) which will be created by the process so the only goal in this case could be

Re: Maven Release release:prepare / perform etc.

2009-03-30 Thread Stephen Connolly
I am going to bet that you might be using the dependency:copy or the dependency:unpack goals and not dependency:copy-dependencies If you are picking something up from the reactor you need to use goals that look in the reactor 2009/3/30 Karl Heinz Marbaise khmarba...@gmx.de Hi David, sorry..

Re: Maven Release release:prepare / perform etc.

2009-03-30 Thread Karl Heinz Marbaise
Hi, Hi David, sorry.. a second one... mvn release:prepare -DpreparationGoals=clean install In my opinion this couldn't work, cause the goal clean tries to download things from local repository (like xy-1.0.0.pom) which will be created by the process so the only goal in this case could be