Spring Operator
2019-03-05 23:43:51 -06:00
committed by Artem Bilan
parent 54c0eb78d5
commit 6eec44936c
2 changed files with 5 additions and 5 deletions

View File

@@ -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
}

View File

@@ -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'
}
}