diff --git a/feeds.info b/feeds.info
index e7b27f7..83b0c46 100644
--- a/feeds.info
+++ b/feeds.info
@@ -11,6 +11,20 @@ files[] = includes/FeedsSource.inc
 files[] = libraries/ParserCSV.inc
 files[] = libraries/http_request.inc
 files[] = libraries/PuSHSubscriber.inc
+files[] = plugins/FeedsCSVParser.inc
+files[] = plugins/FeedsFetcher.inc
+files[] = plugins/FeedsFileFetcher.inc
+files[] = plugins/FeedsHTTPFetcher.inc
+files[] = plugins/FeedsNodeProcessor.inc
+files[] = plugins/FeedsOPMLParser.inc
+files[] = plugins/FeedsParser.inc
+files[] = plugins/FeedsPlugin.inc
+files[] = plugins/FeedsProcessor.inc
+files[] = plugins/FeedsSimplePieParser.inc
+files[] = plugins/FeedsSitemapParser.inc
+files[] = plugins/FeedsSyndicationParser.inc
+files[] = plugins/FeedsTermProcessor.inc
+files[] = plugins/FeedsUserProcessor.inc
 files[] = tests/feeds.test
 files[] = tests/feeds_date_time.test
 files[] = tests/feeds_mapper_date.test
diff --git a/feeds.plugins.inc b/feeds.plugins.inc
index 26d9bff..19aadbb 100644
--- a/feeds.plugins.inc
+++ b/feeds.plugins.inc
@@ -9,23 +9,17 @@
  * Break out for feeds_feed_plugins().
  */
 function _feeds_feeds_plugins() {
-  $path = drupal_get_path('module', 'feeds') . '/plugins';
-
   $info = array();
   $info['FeedsPlugin'] = array(
     'hidden' => TRUE,
     'handler' => array(
       'class' => 'FeedsPlugin',
-      'file' => 'FeedsPlugin.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsMissingPlugin'] = array(
     'hidden' => TRUE,
     'handler' => array(
       'class' => 'FeedsMissingPlugin',
-      'file' => 'FeedsPlugin.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsFetcher'] = array(
@@ -33,8 +27,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsPlugin',
       'class' => 'FeedsFetcher',
-      'file' => 'FeedsFetcher.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsParser'] = array(
@@ -42,8 +34,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsPlugin',
       'class' => 'FeedsParser',
-      'file' => 'FeedsParser.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsProcessor'] = array(
@@ -51,8 +41,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsPlugin',
       'class' => 'FeedsProcessor',
-      'file' => 'FeedsProcessor.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsHTTPFetcher'] = array(
@@ -61,8 +49,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsFetcher', // This is the key name, not the class name.
       'class' => 'FeedsHTTPFetcher',
-      'file' => 'FeedsHTTPFetcher.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsFileFetcher'] = array(
@@ -71,8 +57,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsFetcher',
       'class' => 'FeedsFileFetcher',
-      'file' => 'FeedsFileFetcher.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsCSVParser'] = array(
@@ -81,8 +65,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsParser',
       'class' => 'FeedsCSVParser',
-      'file' => 'FeedsCSVParser.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsSyndicationParser'] = array(
@@ -92,8 +74,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsParser',
       'class' => 'FeedsSyndicationParser',
-      'file' => 'FeedsSyndicationParser.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsOPMLParser'] = array(
@@ -102,8 +82,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsParser',
       'class' => 'FeedsOPMLParser',
-      'file' => 'FeedsOPMLParser.inc',
-      'path' => $path,
     ),
   );
   if (feeds_library_exists('simplepie.inc', 'simplepie')) {
@@ -114,8 +92,6 @@ function _feeds_feeds_plugins() {
       'handler' => array(
         'parent' => 'FeedsParser',
         'class' => 'FeedsSimplePieParser',
-        'file' => 'FeedsSimplePieParser.inc',
-        'path' => $path,
       ),
     );
   }
@@ -125,8 +101,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsParser',
       'class' => 'FeedsSitemapParser',
-      'file' => 'FeedsSitemapParser.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsNodeProcessor'] = array(
@@ -136,8 +110,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsProcessor',
       'class' => 'FeedsNodeProcessor',
-      'file' => 'FeedsNodeProcessor.inc',
-      'path' => $path,
     ),
   );
   $info['FeedsUserProcessor'] = array(
@@ -147,8 +119,6 @@ function _feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsProcessor',
       'class' => 'FeedsUserProcessor',
-      'file' => 'FeedsUserProcessor.inc',
-      'path' => $path,
     ),
   );
   if (module_exists('taxonomy')) {
@@ -159,8 +129,6 @@ function _feeds_feeds_plugins() {
       'handler' => array(
         'parent' => 'FeedsProcessor',
         'class' => 'FeedsTermProcessor',
-        'file' => 'FeedsTermProcessor.inc',
-        'path' => $path,
       ),
     );
   }
