updating lib locations. bumping cordova to 2.3.0rc1. updating references to pluginstall
diff --git a/package.json b/package.json
index c0e7588..035cb3e 100644
--- a/package.json
+++ b/package.json
@@ -23,7 +23,7 @@
   "dependencies": {
     "colors":">=0.6.0",
     "elementtree":"0.1.3",
-    "pluginstall":"git://github.com/imhotep/pluginstall.git#0.5.3",
+    "plugman":"git://github.com/filmaj/plugman.git#0.5.5",
     "plist":"git://github.com/filmaj/node-plist.git",
     "xcode":"0.5.1",
     "express":"3.0",
diff --git a/src/plugin.js b/src/plugin.js
index b264df7..63b1bf4 100644
--- a/src/plugin.js
+++ b/src/plugin.js
@@ -84,7 +84,7 @@
 
                 var pluginWww = path.join(target, 'www');
                 var wwwContents = ls(pluginWww);
-                var cli = path.join(__dirname, '..', 'node_modules', 'pluginstall', 'pluginstall.js');
+                var cli = path.join(__dirname, '..', 'node_modules', 'plugman', 'plugman.js');
 
                 // Iterate over all matchin app-plugin platforms in the project and install the
                 // plugin.
@@ -131,7 +131,7 @@
                     hooks.fire('before_plugin_rm');
                     var pluginWww = path.join(targetPath, 'www');
                     var wwwContents = ls(pluginWww);
-                    var cli = path.join(__dirname, '..', 'node_modules', 'pluginstall', 'pluginstall.js');
+                    var cli = path.join(__dirname, '..', 'node_modules', 'plugman', 'plugman.js');
 
                     // Check if there is at least one match between plugin
                     // supported platforms and app platforms
diff --git a/src/util.js b/src/util.js
index 3dca397..9127067 100644
--- a/src/util.js
+++ b/src/util.js
@@ -5,12 +5,12 @@
     admzip     = require('adm-zip'),
     shell      = require('shelljs');
 
-var cordova_lib_tag = '2.2.0';
+var cordova_lib_tag = '2.3.0rc1';
 
 var repos = {
-    ios:'https://github.com/apache/incubator-cordova-ios/',
-    android:'https://github.com/apache/incubator-cordova-android/',
-    blackberry:'https://github.com/apache/incubator-cordova-blackberry-webworks/'
+    ios:'https://github.com/apache/cordova-ios/',
+    android:'https://github.com/apache/cordova-android/',
+    blackberry:'https://github.com/apache/cordova-blackberry/'
 };
 
 function chmod(path) {