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

I'm using maven 2.2.1 and I sucessfully ran:

mvn -B release:clean release:prepare

But get the error message 'No SCM URL was provided to perform the release from' when I run:

mvn release:perform

My pom.xml have the scm tags defined correctly:

<scm>
    <url>file:///C:/tmp/svnrepo/myproj/trunk</url>        
    <connection>scm:svn:file:///C:/tmp/svnrepo/myproj/trunk</connection>
    <developerConnection>scm:svn:file:///C:/tmp/svnrepo/myproj/trunk</developerConnection>        
</scm>
share|improve this question
Please, add maven-release-plugin configuration too. – Jean-Rémy Revy Jul 17 '12 at 9:18

1 Answer

Lokks like I did a mvn -DdryRun=true release:perform and this had deleted the release.properties file from the prepare stage.

So I add the -DconnectionUrl to the command to provide url of the tag

share|improve this answer
Does it work now ? – Jean-Rémy Revy Jul 17 '12 at 9:18

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.