Browse Source

Fix missing project information in generated POMS

This commit ensures that the project name and description are published
with the generated POMs.
pull/23732/head
Brian Clozel 6 years ago
parent
commit
a446f572a6
  1. 6
      gradle/publications.gradle

6
gradle/publications.gradle

@ -5,8 +5,10 @@ publishing {
publications { publications {
mavenJava(MavenPublication) { mavenJava(MavenPublication) {
pom { pom {
name = project.description afterEvaluate {
description = project.description name = project.description
description = project.description
}
url = "https://github.com/spring-projects/spring-framework" url = "https://github.com/spring-projects/spring-framework"
organization { organization {
name = "Spring IO" name = "Spring IO"

Loading…
Cancel
Save