Index: SubversionSCM.java =================================================================== --- SubversionSCM.java (revision 38917) +++ SubversionSCM.java (working copy) @@ -497,14 +497,14 @@ try { Map revisions = parseRevisionFile(build); if(svnLocations.length==1) { - Long rev = revisions.get(svnLocations[0].remote); + Long rev = revisions.get(getPlainRemoteUrl(svnLocations[0].remote)); if(rev!=null) { env.put("SVN_REVISION",rev.toString()); env.put("SVN_URL",svnLocations[0].getURL()); } } else if(svnLocations.length>1) { for(int i=0;i build, File changelogFile, BuildListener listener, List externals) throws IOException, InterruptedException {