Index: trunk/scripts/BuildProjectionDefinitions.java
===================================================================
--- trunk/scripts/BuildProjectionDefinitions.java	(revision 15988)
+++ trunk/scripts/BuildProjectionDefinitions.java	(revision 16006)
@@ -31,9 +31,9 @@
 public final class BuildProjectionDefinitions {
 
-    private static final String PROJ_DIR = "data_nodist/projection";
+    private static final String PROJ_DIR = "nodist/data/projection";
     private static final String JOSM_EPSG_FILE = "josm-epsg";
     private static final String PROJ4_EPSG_FILE = "epsg";
     private static final String PROJ4_ESRI_FILE = "esri";
-    private static final String OUTPUT_EPSG_FILE = "data/projection/custom-epsg";
+    private static final String OUTPUT_EPSG_FILE = "resources/data/projection/custom-epsg";
 
     private static final Map<String, ProjectionDefinition> epsgProj4 = new LinkedHashMap<>();
Index: trunk/scripts/TagInfoExtract.java
===================================================================
--- trunk/scripts/TagInfoExtract.java	(revision 15988)
+++ trunk/scripts/TagInfoExtract.java	(revision 16006)
@@ -208,5 +208,5 @@
             final Path f = baseDir.resolve("images").resolve(path);
             if (Files.exists(f)) {
-                return "https://josm.openstreetmap.de/export/" + josmSvnRevision + "/josm/trunk/images/" + path;
+                return "https://josm.openstreetmap.de/export/" + josmSvnRevision + "/josm/trunk/resources/images/" + path;
             }
             throw new IllegalStateException("Cannot find image url for " + path);
@@ -226,5 +226,5 @@
                         .add("description", description)
                         .add("project_url", "https://josm.openstreetmap.de/")
-                        .add("icon_url", "https://josm.openstreetmap.de/export/7770/josm/trunk/images/logo_16x16x8.png")
+                        .add("icon_url", "https://josm.openstreetmap.de/export/7770/josm/trunk/resources/images/logo_16x16x8.png")
                         .add("contact_name", "JOSM developer team")
                         .add("contact_email", "josm-dev@openstreetmap.org");
Index: trunk/scripts/geticons.pl
===================================================================
--- trunk/scripts/geticons.pl	(revision 15988)
+++ trunk/scripts/geticons.pl	(revision 16006)
@@ -4,7 +4,7 @@
 
 my @default = (
-  "styles/standard/*.xml",
-  "styles/standard/*.mapcss",
-  "data/*.xml",
+  "resources/styles/standard/*.xml",
+  "resources/styles/standard/*.mapcss",
+  "resources/data/*.xml",
   "src/org/openstreetmap/josm/*.java",
   "src/org/openstreetmap/josm/*/*.java",
@@ -134,9 +134,9 @@
 my %haveicons;
 
-for($i = 1; my @ifiles = (glob("images".("/*" x $i).".png"), glob("images".("/*" x $i).".svg")); ++$i)
+for($i = 1; my @ifiles = (glob("resources/images".("/*" x $i).".png"), glob("resources/images".("/*" x $i).".svg")); ++$i)
 {
   for my $ifile (sort @ifiles)
   {
-    $ifile =~ s/^images\///;
+    $ifile =~ s/^resources\/images\///;
     # svg comes after png due to the glob, so only check for svg's
     if($ifile =~ /^(.*)\.svg$/)
@@ -147,5 +147,5 @@
       }
       # check for unwanted svg effects
-      if(open FILE, "<","images/$ifile")
+      if(open FILE, "<","resources/images/$ifile")
       {
         undef $/;
@@ -181,10 +181,10 @@
   if($img =~ /\.(png|svg)/)
   {
-    print STDERR "$img: File does not exist!\n" if(!-f "images/$img");
+    print STDERR "$img: File does not exist!\n" if(!-f "resources/images/$img");
     delete $haveicons{$img};
   }
   else
   {
-    print STDERR "$img(.svg|.png): File does not exist!\n" if(!-f "images/$img.png" && !-f "images/$img.svg");
+    print STDERR "$img(.svg|.png): File does not exist!\n" if(!-f "resources/images/$img.png" && !-f "resources/images/$img.svg");
     delete $haveicons{"$img.svg"};
     delete $haveicons{"$img.png"};
Index: trunk/scripts/optimize-images
===================================================================
--- trunk/scripts/optimize-images	(revision 15988)
+++ trunk/scripts/optimize-images	(revision 16006)
@@ -1,5 +1,5 @@
 #!/bin/sh
 
-find images/ -name "*.png" \
+find resources/images/ -name "*.png" \
   -exec echo "Processing {}" \; \
   -exec optipng -o7 -quiet "{}" \;
