378219 - updated the scripts to include the new eclipse-mirror repo
diff --git a/scripts/releaselor/releaselor.rb b/scripts/releaselor/releaselor.rb
index b6b113d..d856e61 100755
--- a/scripts/releaselor/releaselor.rb
+++ b/scripts/releaselor/releaselor.rb
@@ -26,6 +26,7 @@
   end
 else
   paths = {
+    'eclipse-mirror' => 'eclipse-mirror',
     'osgi-test-stubs' => 'osgi-test-stubs',
     'osgi-extensions' => 'osgi-extensions',
     'util' => 'util',
@@ -53,6 +54,7 @@
 if args[:product_release] == 'full-product' 
 
   ALL_REPOS = [
+    Repository.new(virgo_eclipse_repo_root,  'eclipse-mirror',      paths['eclipse-mirror'],     'org.eclipse.virgo.eclipse-mirror',       bundle_version, release_from_branch,        ' '),
     Repository.new(virgo_eclipse_repo_root,  'osgi-test-stubs',      paths['osgi-test-stubs'],     'org.eclipse.virgo.teststubs',       bundle_version, release_from_branch,        default_targets),
     Repository.new(virgo_eclipse_repo_root,  'osgi-extensions',      paths['osgi-extensions'],     'org.eclipse.virgo.osgi',            bundle_version, release_from_branch,        default_targets),
     Repository.new(virgo_eclipse_repo_root,  'util',                 paths['util'],                'org.eclipse.virgo.util',            bundle_version, release_from_branch,        default_targets),
diff --git a/scripts/ripplor/ripplor.rb b/scripts/ripplor/ripplor.rb
index a4d9bb8..3093bb6 100755
--- a/scripts/ripplor/ripplor.rb
+++ b/scripts/ripplor/ripplor.rb
@@ -19,6 +19,7 @@
   end
 else
   paths = {
+    'eclipse-mirror' => 'eclipse-mirror',
     'osgi-test-stubs' => 'osgi-test-stubs',
     'osgi-extensions' => 'osgi-extensions',
     'util' => 'util',
@@ -41,6 +42,7 @@
 ripple_branch = args[:branch_name]
 
 ALL_REPOS = [
+  Repository.new(eclipse_repo_root, 'eclipse-mirror',     paths['eclipse-mirror'],     'org.eclipse.virgo.eclipse-mirror',     nil, ripple_branch, ' '),
   Repository.new(eclipse_repo_root, 'osgi-test-stubs',     paths['osgi-test-stubs'],     'org.eclipse.virgo.teststubs',     nil, ripple_branch),
   Repository.new(eclipse_repo_root, 'osgi-extensions',     paths['osgi-extensions'],     'org.eclipse.virgo.osgi',          nil, ripple_branch),
   Repository.new(eclipse_repo_root, 'util',                paths['util'],                'org.eclipse.virgo.util',          nil, ripple_branch),
diff --git a/scripts/virgo-build-updatlor/update-virgo-build-all.rb b/scripts/virgo-build-updatlor/update-virgo-build-all.rb
index cef6fd4..47135f3 100755
--- a/scripts/virgo-build-updatlor/update-virgo-build-all.rb
+++ b/scripts/virgo-build-updatlor/update-virgo-build-all.rb
@@ -19,11 +19,13 @@
   paths = {
     'osgi-test-stubs' => 'osgi-test-stubs',
     'osgi-extensions' => 'osgi-extensions',
+    'eclipse-mirror' => 'eclipse-mirror',
     'util' => 'util',
     'test' => 'test',
     'medic' => 'medic',
     'artifact-repository' => 'artifact-repository',
     'kernel' => 'kernel',
+    'nano' => 'nano',
     'kernel-tools' => 'kernel-tools',
     'web' => 'web',
     'snaps' => 'snaps',
@@ -60,11 +62,13 @@
   Repository.new(virgo_repo_root, 'snaps',                                 paths['snaps'],                            nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'web',                                   paths['web'],                              nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'kernel',                                paths['kernel'],                           nil, nil, update_branch),
+  Repository.new(virgo_repo_root, 'nano',                                  paths['nano'],                           nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'artifact-repository',                   paths['artifact-repository'],              nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'medic',                                 paths['medic'],                            nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'test',                                  paths['test'],                             nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'util',                                  paths['util'],                             nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'osgi-extensions',                       paths['osgi-extensions'],                  nil, nil, update_branch),
+  Repository.new(virgo_repo_root, 'eclipse-mirror',                        paths['eclipse-mirror'],                  nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'osgi-test-stubs',                       paths['osgi-test-stubs'],                  nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'performance-test',                      paths['performance-test'],                 nil, nil, update_branch),
   Repository.new(virgo_repo_root, 'system-verification-tests',             paths['system-verification-tests'],        nil, nil, update_branch),