You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datafu.apache.org by ey...@apache.org on 2019/06/02 10:26:40 UTC

[datafu] branch master updated: Make http dependencies https

This is an automated email from the ASF dual-hosted git repository.

eyal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datafu.git


The following commit(s) were added to refs/heads/master by this push:
     new 1d9c58e  Make http dependencies https
1d9c58e is described below

commit 1d9c58e2185e9752e9236777de17ba35814b071a
Author: Eyal Allweil <ey...@apache.org>
AuthorDate: Sun Jun 2 13:26:08 2019 +0300

    Make http dependencies https
---
 gradle/buildscript.gradle       | 2 +-
 site/source/sitemap.xml.builder | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle
index 19a2217..8315215 100644
--- a/gradle/buildscript.gradle
+++ b/gradle/buildscript.gradle
@@ -21,7 +21,7 @@ repositories {
   repositories {
     maven {
       // For gradle-nexus-plugin
-      url 'http://jcenter.bintray.com/'
+      url 'https://jcenter.bintray.com/'
     }
   }
 }
diff --git a/site/source/sitemap.xml.builder b/site/source/sitemap.xml.builder
index a311d7d..4a17605 100644
--- a/site/source/sitemap.xml.builder
+++ b/site/source/sitemap.xml.builder
@@ -20,7 +20,7 @@ layout: false
 # under the License.
 
 xml.instruct!
-xml.urlset 'xmlns' => "http://www.sitemaps.org/schemas/sitemap/0.9" do
+xml.urlset 'xmlns' => "https://www.sitemaps.org/schemas/sitemap/0.9" do
   sitemap.resources.select { |page| page.destination_path =~ /\.html/ }.each do |page|
     xml.url do
       xml.loc "http://datafu.apache.org/#{page.destination_path}"
@@ -29,4 +29,4 @@ xml.urlset 'xmlns' => "http://www.sitemaps.org/schemas/sitemap/0.9" do
       xml.priority page.data.priority || "0.5"
     end
   end
-end
\ No newline at end of file
+end