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

Loading…
Cancel
Save