Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit c4ec427

Browse files
authored
Merge pull request #260 from BlasiusSecundus/feature/fix-http-repo
fix(): changed repo urls from http to https
2 parents 77d0d6e + 09cb815 commit c4ec427

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildscript {
2424
jcenter()
2525
maven { url "https://dl.bintray.com/graphql-java-kickstart/releases" }
2626
maven { url "https://plugins.gradle.org/m2/" }
27-
maven { url 'http://repo.spring.io/plugins-release' }
27+
maven { url 'https://repo.spring.io/plugins-release' }
2828
}
2929
dependencies {
3030
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
@@ -52,8 +52,8 @@ subprojects {
5252
mavenCentral()
5353
jcenter()
5454
maven { url "https://dl.bintray.com/graphql-java-kickstart/releases" }
55-
maven { url "http://oss.jfrog.org/artifactory/oss-snapshot-local" }
56-
maven { url "http://repo.spring.io/libs-milestone" }
55+
maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
56+
maven { url "https://repo.spring.io/libs-milestone" }
5757
}
5858

5959
idea {

example-spring-common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
buildscript {
2020
repositories {
2121
maven { url "https://plugins.gradle.org/m2/" }
22-
maven { url 'http://repo.spring.io/plugins-release' }
22+
maven { url 'https://repo.spring.io/plugins-release' }
2323
}
2424
dependencies {
2525
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE")

example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
buildscript {
2020
repositories {
2121
maven { url "https://plugins.gradle.org/m2/" }
22-
maven { url 'http://repo.spring.io/plugins-release' }
22+
maven { url 'https://repo.spring.io/plugins-release' }
2323
}
2424
dependencies {
2525
classpath("org.springframework.boot:spring-boot-gradle-plugin:$LIB_SPRING_BOOT_VER")

0 commit comments

Comments
 (0)