Skip to content

Commit b2117dc

Browse files
32: Use https in dependency definitions
fixes: #32
1 parent f4b3d8d commit b2117dc

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

content/documentation/master/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Add the repositories:
105105

106106
repositories {
107107
mavenCentral()
108-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
108+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
109109
}
110110
{{< / highlight >}}
111111

@@ -133,7 +133,7 @@ Add the repository:
133133
</snapshots>
134134
<id>bintray-andimarek-graphql-java</id>
135135
<name>bintray</name>
136-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
136+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
137137
</repository>
138138
{{< / highlight >}}
139139

content/documentation/v10/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Add the repositories:
100100
{{< highlight groovy "linenos=table" >}}
101101
repositories {
102102
mavenCentral()
103-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
103+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
104104
}
105105
{{< / highlight >}}
106106

@@ -126,7 +126,7 @@ Add the repository:
126126
</snapshots>
127127
<id>bintray-andimarek-graphql-java</id>
128128
<name>bintray</name>
129-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
129+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
130130
</repository>
131131
{{< / highlight >}}
132132

content/documentation/v11/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Add the repositories:
100100
{{< highlight groovy "linenos=table" >}}
101101
repositories {
102102
mavenCentral()
103-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
103+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
104104
}
105105
{{< / highlight >}}
106106

@@ -126,7 +126,7 @@ Add the repository:
126126
</snapshots>
127127
<id>bintray-andimarek-graphql-java</id>
128128
<name>bintray</name>
129-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
129+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
130130
</repository>
131131
{{< / highlight >}}
132132

content/documentation/v12/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Add the repositories:
105105

106106
repositories {
107107
mavenCentral()
108-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
108+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
109109
}
110110
{{< / highlight >}}
111111

@@ -133,7 +133,7 @@ Add the repository:
133133
</snapshots>
134134
<id>bintray-andimarek-graphql-java</id>
135135
<name>bintray</name>
136-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
136+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
137137
</repository>
138138
{{< / highlight >}}
139139

content/documentation/v13/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Add the repositories:
105105

106106
repositories {
107107
mavenCentral()
108-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
108+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
109109
}
110110
{{< / highlight >}}
111111

@@ -133,7 +133,7 @@ Add the repository:
133133
</snapshots>
134134
<id>bintray-andimarek-graphql-java</id>
135135
<name>bintray</name>
136-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
136+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
137137
</repository>
138138
{{< / highlight >}}
139139

content/documentation/v14/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Add the repositories:
105105

106106
repositories {
107107
mavenCentral()
108-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
108+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
109109
}
110110
{{< / highlight >}}
111111

@@ -133,7 +133,7 @@ Add the repository:
133133
</snapshots>
134134
<id>bintray-andimarek-graphql-java</id>
135135
<name>bintray</name>
136-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
136+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
137137
</repository>
138138
{{< / highlight >}}
139139

content/documentation/v9/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Add the repositories:
100100
{{< highlight groovy "linenos=table" >}}
101101
repositories {
102102
mavenCentral()
103-
maven { url "http://dl.bintray.com/andimarek/graphql-java" }
103+
maven { url "https://dl.bintray.com/andimarek/graphql-java" }
104104
}
105105
{{< / highlight >}}
106106

@@ -126,7 +126,7 @@ Add the repository:
126126
</snapshots>
127127
<id>bintray-andimarek-graphql-java</id>
128128
<name>bintray</name>
129-
<url>http://dl.bintray.com/andimarek/graphql-java</url>
129+
<url>https://dl.bintray.com/andimarek/graphql-java</url>
130130
</repository>
131131
{{< / highlight >}}
132132

0 commit comments

Comments
 (0)