Index: applications/editors/josm/plugins/routing/build.xml
===================================================================
--- applications/editors/josm/plugins/routing/build.xml	(revision 19474)
+++ applications/editors/josm/plugins/routing/build.xml	(revision 19475)
@@ -27,6 +27,6 @@
 <project name="routing" default="dist" basedir=".">
 
-	<property name="commit.message" value="Update to JOSM 2748" />
-	<property name="plugin.main.version" value="2748" />
+	<property name="commit.message" value="Changed the constructor signature of the plugin main class" />
+	<property name="plugin.main.version" value="2830" />
 
 	<!-- Define some properties -->
Index: applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java
===================================================================
--- applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java	(revision 19474)
+++ applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java	(revision 19475)
@@ -28,5 +28,4 @@
 package com.innovant.josm.plugin.routing;
 
-import static org.openstreetmap.josm.tools.I18n.marktr;
 import static org.openstreetmap.josm.tools.I18n.tr;
 
@@ -44,4 +43,5 @@
 import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
 import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
 
 import com.innovant.josm.plugin.routing.actions.AddRouteNodeAction;
@@ -127,6 +127,6 @@
      * Default Constructor
      */
-    public RoutingPlugin() {
-        super();
+    public RoutingPlugin(PluginInformation info) {
+        super(info);
         plugin = this; // Assign reference to the plugin class
         DOMConfigurator.configure("log4j.xml");
