Index: /applications/editors/josm/dist/getversions
===================================================================
--- /applications/editors/josm/dist/getversions	(revision 29436)
+++ /applications/editors/josm/dist/getversions	(revision 29437)
@@ -1,4 +1,5 @@
 #! /usr/bin/perl -w
 
+my $oldsvn = 0; # before 1.7
 my $maxlength = 0;
 my @names = glob "*.jar";
@@ -10,4 +11,5 @@
 }
 
+system "svn -q export -r BASE . getrev" if !$oldsvn;
 foreach my $plugin (@names)
 {
@@ -23,5 +25,5 @@
   }
   printf "%-${maxlength}s %28s %6s (%4s)", $plugin,$date,$version,$mversion;
-  my $svnfile = ".svn/text-base/$plugin.svn-base";
+  my $svnfile = $oldsvn ? ".svn/text-base/$plugin.svn-base" : "getrev/$plugin";
   if(-f $svnfile && ($manifest = `unzip -c $svnfile META-INF/MANIFEST.MF`))
   {
@@ -40,2 +42,3 @@
   printf "\n";
 }
+system "rm -rf getrev" if !$oldsvn;
