diff --git a/build.gradle b/build.gradle index fced4d5..d5a607f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { repositories { - maven { url 'http://repo.spring.io/plugins-release' } + maven { url 'https://repo.spring.io/plugins-release' } } dependencies { classpath 'io.spring.gradle:dependency-management-plugin:1.0.5.RELEASE' @@ -23,11 +23,11 @@ apply from: "${rootProject.projectDir}/publish-maven.gradle" group = 'org.springframework.integration' repositories { -// maven { url 'http://repo.spring.io/libs-staging-local' } +// maven { url 'https://repo.spring.io/libs-staging-local' } if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) { maven { url 'https://repo.spring.io/libs-snapshot' } } - maven { url 'http://repo.spring.io/libs-milestone' } + maven { url 'https://repo.spring.io/libs-milestone' } } ext { @@ -50,7 +50,7 @@ ext { } ext.javadocLinks = [ - "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/" + "https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/" ] as String[] compileJava { diff --git a/publish-maven.gradle b/publish-maven.gradle index 20e3404..8d06dfa 100644 --- a/publish-maven.gradle +++ b/publish-maven.gradle @@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) { url = 'https://github.com/spring-projects/spring-integration-aws' organization { name = 'SpringIO' - url = 'http://spring.io' + url = 'https://spring.io' } licenses { license { 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' } }