Index: applications/editors/josm/plugins/tageditor/build.xml
===================================================================
--- applications/editors/josm/plugins/tageditor/build.xml	(revision 19412)
+++ applications/editors/josm/plugins/tageditor/build.xml	(revision 19413)
@@ -28,6 +28,6 @@
 
 
-	<property name="commit.message" value="Made build file more robust" />
-	<property name="plugin.main.version" value="2355" />
+	<property name="commit.message" value="Uses new constructor for Plugin" />
+	<property name="plugin.main.version" value="2830" />
 
 	<!--
Index: applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/TagEditorPlugin.java
===================================================================
--- applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/TagEditorPlugin.java	(revision 19412)
+++ applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/TagEditorPlugin.java	(revision 19413)
@@ -2,4 +2,5 @@
 
 import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
 
 public class TagEditorPlugin extends Plugin {
@@ -10,5 +11,6 @@
 	 * constructor 
 	 */
-	public TagEditorPlugin() {
+	public TagEditorPlugin(PluginInformation info) {
+		super(info);
 		action = new LaunchAction();
 	}
