Index: D:/devel/continuum-1.1-beta-2/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ReleasePrepareAction.java =================================================================== --- D:/devel/continuum-1.1-beta-2/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ReleasePrepareAction.java (revision 573242) +++ D:/devel/continuum-1.1-beta-2/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ReleasePrepareAction.java (working copy) @@ -99,7 +99,8 @@ scmUsername = project.getScmUsername(); scmPassword = project.getScmPassword(); scmTag = project.getScmTag(); - + String workingDirectory = getContinuum().getWorkingDirectory(project.getId()).getPath(); + String scmUrl = project.getScmUrl(); if ( scmUrl.startsWith( SCM_SVN_PROTOCOL_PREFIX ) ) { @@ -114,9 +115,9 @@ prepareGoals = "clean integration-test"; - getReleasePluginParameters( project.getWorkingDirectory(), "pom.xml" ); + getReleasePluginParameters( workingDirectory, "pom.xml" ); - processProject( project.getWorkingDirectory(), "pom.xml" ); + processProject( workingDirectory, "pom.xml" ); return SUCCESS; }