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 Success These URLs were fixed successfully. * http://projects.spring.io/spring-security-kerberos/ migrated to: https://projects.spring.io/spring-security-kerberos/ ([https](https://projects.spring.io/spring-security-kerberos/) result 200). * 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://docs.jboss.org/jbossas/javadoc/4.0.5/connector migrated to: https://docs.jboss.org/jbossas/javadoc/4.0.5/connector ([https](https://docs.jboss.org/jbossas/javadoc/4.0.5/connector) result 301). * http://projects.spring.io/spring-security-kerberos migrated to: https://projects.spring.io/spring-security-kerberos ([https](https://projects.spring.io/spring-security-kerberos) result 301). * http://repo.springsource.org/plugins-release migrated to: https://repo.springsource.org/plugins-release ([https](https://repo.springsource.org/plugins-release) result 301). * http://repo.spring.io/libs-release migrated to: https://repo.spring.io/libs-release ([https](https://repo.spring.io/libs-release) result 302).
69 lines
2.3 KiB
Groovy
69 lines
2.3 KiB
Groovy
apply plugin: 'maven'
|
|
|
|
ext.optionalDeps = []
|
|
ext.providedDeps = []
|
|
|
|
ext.optional = { optionalDeps << it }
|
|
ext.provided = { providedDeps << it }
|
|
|
|
install {
|
|
repositories.mavenInstaller {
|
|
customizePom(pom, project)
|
|
}
|
|
}
|
|
|
|
def customizePom(pom, gradleProject) {
|
|
pom.whenConfigured { generatedPom ->
|
|
// respect 'optional' and 'provided' dependencies
|
|
gradleProject.optionalDeps.each { dep ->
|
|
generatedPom.dependencies.find { it.artifactId == dep.name }?.optional = true
|
|
}
|
|
gradleProject.providedDeps.each { dep ->
|
|
generatedPom.dependencies.find { it.artifactId == dep.name }?.scope = 'provided'
|
|
}
|
|
|
|
// eliminate test-scoped dependencies (no need in maven central poms)
|
|
generatedPom.dependencies.removeAll { dep ->
|
|
dep.scope == 'test'
|
|
}
|
|
|
|
// add all items necessary for maven central publication
|
|
generatedPom.project {
|
|
name = gradleProject.description
|
|
description = gradleProject.description
|
|
url = 'https://projects.spring.io/spring-security-kerberos'
|
|
organization {
|
|
name = 'SpringSource'
|
|
url = 'https://projects.spring.io/spring-security-kerberos/'
|
|
}
|
|
licenses {
|
|
license {
|
|
name 'The Apache Software License, Version 2.0'
|
|
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
scm {
|
|
url = 'https://github.com/SpringSource/spring-security-kerberos'
|
|
connection = 'scm:git:git://github.com/SpringSource/spring-security-kerberos'
|
|
developerConnection = 'scm:git:git://github.com/SpringSource/spring-security-kerberos'
|
|
}
|
|
developers {
|
|
developer {
|
|
id = 'mwiesner'
|
|
name = 'Mike Wiesner'
|
|
email = 'mwiesner@vmware.com'
|
|
}
|
|
developer {
|
|
id = 'jvalkeal'
|
|
name = 'Janne Valkealahti'
|
|
email = 'jvalkealahti@pivotal.io'
|
|
properties {
|
|
twitter = 'tunebluez'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|