Index: applications/editors/josm/plugins/apache-commons/.project
===================================================================
--- applications/editors/josm/plugins/commons-imaging/.project	(revision 31603)
+++ applications/editors/josm/plugins/apache-commons/.project	(revision 31668)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>JOSM-commons-imaging</name>
+	<name>JOSM-apache-commons</name>
 	<comment></comment>
 	<projects>
Index: applications/editors/josm/plugins/apache-commons/build.xml
===================================================================
--- applications/editors/josm/plugins/commons-imaging/build.xml	(revision 31603)
+++ applications/editors/josm/plugins/apache-commons/build.xml	(revision 31668)
@@ -1,4 +1,4 @@
 <?xml version="1.0" encoding="utf-8"?>
-<project name="commons-imaging" default="dist" basedir=".">
+<project name="apache-commons" default="dist" basedir=".">
 
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
@@ -8,7 +8,7 @@
          See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
     -->
-    <property name="plugin.author" value="nokutu"/>
-    <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="plugin.author" value="nokutu; Don-vip"/>
+    <property name="plugin.class" value="org.openstreetmap.josm.plugins.commons.CommonsPlugin"/>
+    <property name="plugin.description" value="Provides Apache Commons library components. 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"/>
Index: applications/editors/josm/plugins/apache-commons/src/org/openstreetmap/josm/plugins/commons/CommonsPlugin.java
===================================================================
--- applications/editors/josm/plugins/apache-commons/src/org/openstreetmap/josm/plugins/commons/CommonsPlugin.java	(revision 31668)
+++ applications/editors/josm/plugins/apache-commons/src/org/openstreetmap/josm/plugins/commons/CommonsPlugin.java	(revision 31668)
@@ -0,0 +1,15 @@
+package org.openstreetmap.josm.plugins.commons;
+
+import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
+
+public class CommonsPlugin extends Plugin {
+
+    /**
+     * Constructs a new {@code CommonsPlugin}.
+     * @param info plugin information
+     */
+    public CommonsPlugin(PluginInformation info) {
+        super(info);
+    } 
+}
