Fix missing project information in generated POMS

This commit ensures that the project name and description are published
with the generated POMs.
This commit is contained in:
Brian Clozel
2019-09-30 10:22:44 +02:00
parent 545a4faa2d
commit a446f572a6

View File

@@ -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"