Skip to content

Commit 152ed01

Browse files
committed
Merge pull request #591 from Spring Operator
* gh-591: Use SSL for all HTTP URLs Closes gh-591
2 parents cfd097b + e23cfc6 commit 152ed01

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ sonarqube {
3939
ext {
4040
springVersion = '5.0.5.RELEASE'
4141
javadocLinks = [
42-
'http://docs.oracle.com/javase/8/docs/api/',
43-
"http://docs.spring.io/spring-framework/docs/$springVersion/javadoc-api/",
42+
'https://docs.oracle.com/javase/8/docs/api/',
43+
"https://docs.spring.io/spring-framework/docs/$springVersion/javadoc-api/",
4444
'https://docs.jboss.org/hibernate/stable/beanvalidation/api/',
4545
'https://docs.jboss.org/hibernate/stable/validator/api/'
4646
] as String[]

gradle/publish-maven.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ def customizePom(pom, gradleProject) {
1515
url = "https://github.com/spring-projects/spring-restdocs"
1616
organization {
1717
name = "Spring IO"
18-
url = "http://projects.spring.io/spring-restdocs"
18+
url = "https://projects.spring.io/spring-restdocs"
1919
}
2020
licenses {
2121
license {
2222
name "The Apache Software License, Version 2.0"
23-
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
23+
url "https://www.apache.org/licenses/LICENSE-2.0.txt"
2424
distribution "repo"
2525
}
2626
}

samples/rest-notes-spring-data-rest/mvnw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# "License"); you may not use this file except in compliance
99
# with the License. You may obtain a copy of the License at
1010
#
11-
# http://www.apache.org/licenses/LICENSE-2.0
11+
# https://www.apache.org/licenses/LICENSE-2.0
1212
#
1313
# Unless required by applicable law or agreed to in writing,
1414
# software distributed under the License is distributed on an

samples/rest-notes-spring-data-rest/mvnw.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@REM "License"); you may not use this file except in compliance
88
@REM with the License. You may obtain a copy of the License at
99
@REM
10-
@REM http://www.apache.org/licenses/LICENSE-2.0
10+
@REM https://www.apache.org/licenses/LICENSE-2.0
1111
@REM
1212
@REM Unless required by applicable law or agreed to in writing,
1313
@REM software distributed under the License is distributed on an

0 commit comments

Comments
 (0)