Update build configuration to prefer HTTPS

See gh-596
This commit is contained in:
Spring Operator
2019-03-16 11:55:06 -05:00
committed by Andy Wilkinson
parent b430a88796
commit 1572be5b29
5 changed files with 7 additions and 7 deletions

View File

@@ -37,8 +37,8 @@ sonarqube {
ext { ext {
springVersion = '4.1.8.RELEASE' springVersion = '4.1.8.RELEASE'
javadocLinks = [ javadocLinks = [
'http://docs.oracle.com/javase/8/docs/api/', 'https://docs.oracle.com/javase/8/docs/api/',
"http://docs.spring.io/spring-framework/docs/$springVersion/javadoc-api/", "https://docs.spring.io/spring-framework/docs/$springVersion/javadoc-api/",
'https://docs.jboss.org/hibernate/stable/beanvalidation/api/' 'https://docs.jboss.org/hibernate/stable/beanvalidation/api/'
] as String[] ] as String[]
} }

View File

@@ -15,12 +15,12 @@ def customizePom(pom, gradleProject) {
url = "https://github.com/spring-projects/spring-restdocs" url = "https://github.com/spring-projects/spring-restdocs"
organization { organization {
name = "Spring IO" name = "Spring IO"
url = "http://projects.spring.io/spring-restdocs" url = "https://projects.spring.io/spring-restdocs"
} }
licenses { licenses {
license { license {
name "The Apache Software License, Version 2.0" name "The Apache Software License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt" url "https://www.apache.org/licenses/LICENSE-2.0.txt"
distribution "repo" distribution "repo"
} }
} }

View File

@@ -8,7 +8,7 @@
# "License"); you may not use this file except in compliance # "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at # with the License. You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # https://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, # Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an # software distributed under the License is distributed on an

View File

@@ -7,7 +7,7 @@
@REM "License"); you may not use this file except in compliance @REM "License"); you may not use this file except in compliance
@REM with the License. You may obtain a copy of the License at @REM with the License. You may obtain a copy of the License at
@REM @REM
@REM http://www.apache.org/licenses/LICENSE-2.0 @REM https://www.apache.org/licenses/LICENSE-2.0
@REM @REM
@REM Unless required by applicable law or agreed to in writing, @REM Unless required by applicable law or agreed to in writing,
@REM software distributed under the License is distributed on an @REM software distributed under the License is distributed on an

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId> <groupId>com.example</groupId>