diff --git a/build.gradle b/build.gradle index 7a0f161..31df91b 100644 --- a/build.gradle +++ b/build.gradle @@ -49,7 +49,7 @@ if (project.hasProperty('platformVersion')) { group = 'org.springframework.integration' repositories { - maven { url 'http://repo.spring.io/libs-snapshot' } + maven { url 'https://repo.spring.io/libs-snapshot' } } compileJava { @@ -73,8 +73,8 @@ ext { shortName = 'flow' } -// See http://www.gradle.org/docs/current/userguide/dependency_management.html#sub:configurations -// and http://www.gradle.org/docs/current/dsl/org.gradle.api.artifacts.ConfigurationContainer.html +// See https://www.gradle.org/docs/current/userguide/dependency_management.html#sub:configurations +// and https://www.gradle.org/docs/current/dsl/org.gradle.api.artifacts.ConfigurationContainer.html configurations { jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo } diff --git a/publish-maven.gradle b/publish-maven.gradle index d2f9d67..3b376ec 100644 --- a/publish-maven.gradle +++ b/publish-maven.gradle @@ -34,12 +34,12 @@ def customizePom(pom, gradleProject) { url = linkHomepage 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' } }