Use HTTPS
diff --git a/commits/batch/get-companies.pl b/commits/batch/get-companies.pl
index e2ea024..2b56c59 100755
--- a/commits/batch/get-companies.pl
+++ b/commits/batch/get-companies.pl
@@ -12,7 +12,7 @@
 use LWP;
 use FileHandle;
 
-my $them = "http://www.eclipse.org";
+my $them = "https://www.eclipse.org";
 my $file = "/projects/web-api/commit-companies.php";
 
 # Get content from web-api
diff --git a/commits/batch/get-roots.pl b/commits/batch/get-roots.pl
index a3873de..0417cc0 100755
--- a/commits/batch/get-roots.pl
+++ b/commits/batch/get-roots.pl
@@ -13,7 +13,7 @@
 use LWP;
 use FileHandle;
 
-my $them = "http://www.eclipse.org";
+my $them = "https://www.eclipse.org";
 my $file = "/projects/web-api/repos.php";
 
 sub get_data {
diff --git a/commits/batch/git-parse.php b/commits/batch/git-parse.php
index c20e0ce..13b848a 100755
--- a/commits/batch/git-parse.php
+++ b/commits/batch/git-parse.php
@@ -206,7 +206,7 @@
 	if ($_emailToCommitterMap) return $_emailToCommitterMap;
 	
 	$_emailToCommitterMap = array();
-	$file = fopen('http://www.eclipse.org/projects/web-api/email-id-map.php', 'r');
+	$file = fopen('https://www.eclipse.org/projects/web-api/email-id-map.php', 'r');
 	if (!$file) return;
 	while (!feof($file)) {
 		$line = fgets($file);
@@ -237,7 +237,7 @@
 	if ($_committerToCompanyMap) return $_committerToCompanyMap;
 	
 	$_committerToCompanyMap = array();
-	$file = fopen('http://www.eclipse.org/projects/web-api/commit-companies.php', 'r');
+	$file = fopen('https://www.eclipse.org/projects/web-api/commit-companies.php', 'r');
 	if (!$file) return;
 	while (!feof($file)) {
 		$line = fgets($file);