This commit reverts all artifactory configuration changes in this branch. A new build plan has been created for the master branch which is tailored for the latest Gradle changes made on that branch.
61 lines
1.7 KiB
Groovy
61 lines
1.7 KiB
Groovy
apply plugin: "propdeps-maven"
|
|
|
|
install {
|
|
repositories.mavenInstaller {
|
|
customizePom(pom, project)
|
|
}
|
|
}
|
|
|
|
def customizePom(pom, gradleProject) {
|
|
pom.whenConfigured { generatedPom ->
|
|
// eliminate test-scoped dependencies (no need in maven central poms)
|
|
generatedPom.dependencies.removeAll { dep ->
|
|
dep.scope == "test"
|
|
}
|
|
|
|
// sort to make pom dependencies order consistent to ease comparison of older poms
|
|
generatedPom.dependencies = generatedPom.dependencies.sort { dep ->
|
|
"$dep.scope:$dep.groupId:$dep.artifactId"
|
|
}
|
|
|
|
def managedVersions = dependencyManagement.managedVersions
|
|
generatedPom.dependencies.findAll{dep -> !dep.version }.each { dep ->
|
|
dep.version = managedVersions["${dep.groupId}:${dep.artifactId}"]
|
|
}
|
|
|
|
// add all items necessary for maven central publication
|
|
generatedPom.project {
|
|
name = gradleProject.description
|
|
description = gradleProject.description
|
|
url = "https://github.com/spring-projects/spring-framework"
|
|
organization {
|
|
name = "Spring IO"
|
|
url = "https://projects.spring.io/spring-framework"
|
|
}
|
|
licenses {
|
|
license {
|
|
name "Apache License, Version 2.0"
|
|
url "https://www.apache.org/licenses/LICENSE-2.0"
|
|
distribution "repo"
|
|
}
|
|
}
|
|
scm {
|
|
url = "https://github.com/spring-projects/spring-framework"
|
|
connection = "scm:git:git://github.com/spring-projects/spring-framework"
|
|
developerConnection = "scm:git:git://github.com/spring-projects/spring-framework"
|
|
}
|
|
developers {
|
|
developer {
|
|
id = "jhoeller"
|
|
name = "Juergen Hoeller"
|
|
email = "jhoeller@pivotal.io"
|
|
}
|
|
}
|
|
issueManagement {
|
|
system = "GitHub"
|
|
url = "https://github.com/spring-projects/spring-framework/issues"
|
|
}
|
|
}
|
|
}
|
|
}
|