Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 14636)
+++ /trunk/build.xml	(revision 14637)
@@ -922,4 +922,5 @@
                 excludes="gui/mappaint/mapcss/parsergen/*.java"/>
             <fileset dir="${base.dir}/test" includes="**/*.java"/>
+            <fileset dir="${base.dir}/scripts" includes="**/*.java"/>
             <formatter type="plain"/>
             <formatter type="xml" toFile="checkstyle-josm.xml"/>
Index: /trunk/scripts/BuildProjectionDefinitions.java
===================================================================
--- /trunk/scripts/BuildProjectionDefinitions.java	(revision 14636)
+++ /trunk/scripts/BuildProjectionDefinitions.java	(revision 14637)
@@ -28,5 +28,5 @@
  * proj.4 project and a list maintained by the JOSM team.
  */
-public class BuildProjectionDefinitions {
+public final class BuildProjectionDefinitions {
 
     private static final String PROJ_DIR = "data_nodist/projection";
@@ -65,4 +65,7 @@
     private static List<String> knownNadgrids;
 
+    private BuildProjectionDefinitions() {
+    }
+
     /**
      * Program entry point
@@ -164,5 +167,6 @@
             }
             if (noOmercNoBounds > 0) {
-                System.out.println(String.format(" * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds));
+                System.out.println(String.format(
+                        " * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds));
             }
             if (noEquatorStereo > 0) {
@@ -209,4 +213,5 @@
 
         // exclude projections failing
+        // CHECKSTYLE.OFF: LineLength
         if (Arrays.asList(
                 // Unsuitable parameters 'lat_1' and 'lat_2' for two point method
@@ -235,4 +240,5 @@
             result = false;
         }
+        // CHECKSTYLE.ON: LineLength
 
         Map<String, String> parameters;
Index: /trunk/scripts/I18nSimilarStrings.java
===================================================================
--- /trunk/scripts/I18nSimilarStrings.java	(revision 14636)
+++ /trunk/scripts/I18nSimilarStrings.java	(revision 14637)
@@ -1,2 +1,4 @@
+// License: GPL. For details, see LICENSE file.
+
 import java.util.ArrayList;
 import java.util.Collections;
@@ -18,4 +20,7 @@
  */
 public final class I18nSimilarStrings {
+
+    private I18nSimilarStrings() {
+    }
 
     /**
