Index: applications/editors/josm/plugins/commons-imaging/.classpath
===================================================================
--- applications/editors/josm/plugins/commons-imaging/.classpath	(revision 31199)
+++ applications/editors/josm/plugins/commons-imaging/.classpath	(revision 31199)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
Index: applications/editors/josm/plugins/commons-imaging/.project
===================================================================
--- applications/editors/josm/plugins/commons-imaging/.project	(revision 31199)
+++ applications/editors/josm/plugins/commons-imaging/.project	(revision 31199)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>JOSM-commons-imaging</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: applications/editors/josm/plugins/commons-imaging/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- applications/editors/josm/plugins/commons-imaging/.settings/org.eclipse.jdt.core.prefs	(revision 31199)
+++ applications/editors/josm/plugins/commons-imaging/.settings/org.eclipse.jdt.core.prefs	(revision 31199)
@@ -0,0 +1,7 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
+org.eclipse.jdt.core.compiler.compliance=1.7
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.7
Index: applications/editors/josm/plugins/commons-imaging/build.xml
===================================================================
--- applications/editors/josm/plugins/commons-imaging/build.xml	(revision 31198)
+++ applications/editors/josm/plugins/commons-imaging/build.xml	(revision 31199)
@@ -1,25 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!--
-** This is a template build file for a JOSM  plugin.
-**
-** Maintaining versions
-** ====================
-** See README.template
-**
-** Usage
-** =====
-** Call "ant help" to get possible build targets.
-**
--->
 <project name="commons-imaging" default="dist" basedir=".">
 
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     <property name="plugin.main.version" value="7777"/>
-    <property name="plugin.version" value="1.0"/>
 
     <!-- Configure these properties (replace "..." accordingly).
-
-
-
          See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
     -->
@@ -27,9 +11,9 @@
     <property name="plugin.class" value="org.openstreetmap.josm.plugins.commons.imaging.CommonsImagingPlugin"/>
     <property name="plugin.description" value="Provides Commons Imaging library. Not meant to be installed directly by users, but rather as a dependency for other plugins."/>
-   
     
 	<property name="josm" location="../../core/dist/josm-custom.jar"/>
 	<property name="plugin.dist.dir" value="../../dist"/>
-	
+    <property name="plugin.stage" value="10"/>
+
     <!-- ** include targets that all plugins have in common ** -->
     <import file="../build-common.xml"/>
Index: applications/editors/josm/plugins/commons-imaging/src/org/openstreetmap/josm/plugins/commons/imaging/CommonsImagingPlugin.java
===================================================================
--- applications/editors/josm/plugins/commons-imaging/src/org/openstreetmap/josm/plugins/commons/imaging/CommonsImagingPlugin.java	(revision 31199)
+++ applications/editors/josm/plugins/commons-imaging/src/org/openstreetmap/josm/plugins/commons/imaging/CommonsImagingPlugin.java	(revision 31199)
@@ -0,0 +1,15 @@
+package org.openstreetmap.josm.plugins.commons.imaging;
+
+import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
+
+public class CommonsImagingPlugin extends Plugin {
+
+    /**
+     * Constructs a new {@code CommonsImagingPlugin}.
+     * @param info plugin information
+     */
+    public CommonsImagingPlugin(PluginInformation info) {
+        super(info);
+    } 
+}
