Replace http: with  https:

Change-Id: Ib62dae29156d18868e4afd71a7f2d7a3ef3075a1
Signed-off-by: Frederic Gurr <frederic.gurr@eclipse-foundation.org>
diff --git a/checkMirrorsUtility/checkMirrors.sh b/checkMirrorsUtility/checkMirrors.sh
index 50cf35c..cffc43d 100755
--- a/checkMirrorsUtility/checkMirrors.sh
+++ b/checkMirrorsUtility/checkMirrors.sh
@@ -46,10 +46,10 @@
     pword="$2"
   fi
   if [[ $listMirrors -eq 1 ]]; then
-    listOfMirrors=$(wget -q -O - "http://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}")
+    listOfMirrors=$(wget -q -O - "https://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}")
     printf "\n\t%s\n\n%s\n\n" "${mirrorURL}" "${listOfMirrors}" >> mirrorsList.txt
   fi
-  nMirrors=$(wget -q -O - "http://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}" | grep "<mirror\ " | wc -l)
+  nMirrors=$(wget -q -O - "https://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}" | grep "<mirror\ " | wc -l)
   #printf "\t%s%4d%s\n" "number of ${pword} mirrors: " ${nMirrors} "  for ${mirrorURL}" >&2
   printf "%s%4d%s\n" "number of mirrors:" ${nMirrors} " for ${mirrorURL}" >&2
   # echo to get nMirrors "returned" to caller
diff --git a/fetchAndBuildExample/testFetchAndBuild.sh b/fetchAndBuildExample/testFetchAndBuild.sh
index 878caec..e415c7d 100755
--- a/fetchAndBuildExample/testFetchAndBuild.sh
+++ b/fetchAndBuildExample/testFetchAndBuild.sh
@@ -19,7 +19,7 @@
 getTools=${getTools:-"true"}
 if [[ ${getTools} == "true" ]]
 then
-  wget --no-verbose -O ${BUILD_HOME}/getSimRelTools.sh http://git.eclipse.org/c/simrel/org.eclipse.simrel.tools.git/plain/bootstrapScript/getSimRelTools.sh 2>&1
+  wget --no-verbose -O ${BUILD_HOME}/getSimRelTools.sh https://git.eclipse.org/c/simrel/org.eclipse.simrel.tools.git/plain/bootstrapScript/getSimRelTools.sh 2>&1
   RC=$?
   if [[ $RC != 0 ]]
   then
diff --git a/promoteUtils/checkComposites.sh b/promoteUtils/checkComposites.sh
index 1c63096..0acad42 100755
--- a/promoteUtils/checkComposites.sh
+++ b/promoteUtils/checkComposites.sh
@@ -13,7 +13,7 @@
 # Utility to run on CI server, to periodically confirm that our atomic composite repositories are valid.
 
 # can be retrieved as individual script with
-# wget --no-verbose --no-cache  -O checkComposites.sh http://git.eclipse.org/c/simrel/org.eclipse.simrel.tools.git/plain/promoteUtils/checkComposites.sh;
+# wget --no-verbose --no-cache  -O checkComposites.sh https://git.eclipse.org/c/simrel/org.eclipse.simrel.tools.git/plain/promoteUtils/checkComposites.sh;
 #
 # and typically set chmod +x checkComposites.sh and then executed in "bash script" build step.
 
diff --git a/promoteUtils/promote.shsource b/promoteUtils/promote.shsource
index d936d06..ac61907 100644
--- a/promoteUtils/promote.shsource
+++ b/promoteUtils/promote.shsource
@@ -40,7 +40,7 @@
 export JAVA_CMD=${JAVA_EXEC_DIR}/java
 
 # remember, the '&' should be uescaped here ... the p2 api (or underlying xml) will escape it.
-export devArgs="-Djava.io.tmpdir=${BUILD_HOME}/tmp -Dp2MirrorsURL=http://www.eclipse.org/downloads/download.php?format=xml&file=/releases/${release}/${dirdate} -DartifactRepoDirectory=${REPO_ROOT}/releases/${release}/${dirdate} -Dp2StatsURI=https://download.eclipse.org/stats/releases/${release} -Dp2ArtifactRepositoryName=${release}/${dirdate}"
+export devArgs="-Djava.io.tmpdir=${BUILD_HOME}/tmp -Dp2MirrorsURL=https://www.eclipse.org/downloads/download.php?format=xml&file=/releases/${release}/${dirdate} -DartifactRepoDirectory=${REPO_ROOT}/releases/${release}/${dirdate} -Dp2StatsURI=https://download.eclipse.org/stats/releases/${release} -Dp2ArtifactRepositoryName=${release}/${dirdate}"
 
 mkdir -p ${BUILD_HOME}/tmp