Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use the maven-release-plugin 2.3.2 on a multi module POM. (Maven 3.0.4)

release:prepare works fine but release:perform fails with this error

[INFO] org.apache.maven.lifecycle.MissingProjectException: The goal you specified 
requires a project to execute but there is no POM in this directory (...<workspace>/target
/checkout). Please verify you invoked Maven from the correct directory.

Now the parent POM lies inside this <workspace>/ but in the <workspace>/target/checkout there is no POM as the target directory was created by the plugin. I am assuming there should be a copy of the pom.xml here which should be created by the plugin and that is why the error.

What I am doing wrong ? Directory and POM structure attached. Module 1 and 2 both have respective pom.xmls in root.


dir structure


I have looked at maven release plugin, git, and the pom's not at the top , maven generating pom file , Maven 3.0's "mvn release:perform" doesn't like a pom.xml that isn't in its git repo's root directory . They don't help as my pom already lies in the repo's (SVN) root directory and this directory where the plugin is looking for the POM is only temporary, so I cannot/should not hard-code it.

share|improve this question
Can you show the directory layout and where your pom's are located? – khmarbaise Dec 14 '12 at 8:02
@khmarbaise updated the question – Pulak Agrawal Dec 14 '12 at 8:12
Is the given pom.xml which is located in the root of your multi-module build correctly checked-in in SVN at the same position? Have you started the mvn release:prepare and mvn release.perform from the root of the multi-module build? – khmarbaise Dec 14 '12 at 8:29
yes and yes to both – Pulak Agrawal Dec 14 '12 at 8:36
fixed it.. wrong path in the <scm> tag in the parent POM.. @khmarbaise your comment got me thinking that the path in SVN=Jenkins workspace=path in <scm> is the only way it can work – Pulak Agrawal Dec 14 '12 at 8:59

1 Answer

up vote 0 down vote accepted

Fixed it.. wrong path in the tag in the parent POM. Comment from khmarbaise got me thinking that the path in SVN=Jenkins workspace=path in is the only way it can work and thats how it did.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.