This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://projects.spring.io/spring-loaded (404) migrated to: https://projects.spring.io/spring-loaded ([https](https://projects.spring.io/spring-loaded) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://www.apache.org/licenses/LICENSE-2.0.txt migrated to: https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200). * http://maven.springframework.org/milestone migrated to: https://maven.springframework.org/milestone ([https](https://maven.springframework.org/milestone) result 302).
30 lines
549 B
Groovy
30 lines
549 B
Groovy
allprojects {
|
|
configurations {
|
|
tools
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://maven.springframework.org/milestone"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply from: "$rootDir/gradle/publish-maven.gradle"
|
|
|
|
sourceCompatibility = 1.6
|
|
targetCompatibility = 1.6
|
|
}
|
|
|
|
configure(subprojects.findAll { it.name.startsWith('testdata')}) {
|
|
tasks.findByPath("artifactoryPublish")?.enabled = false
|
|
}
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '3.4.1'
|
|
}
|