Skip to content

Commit

Permalink
Fix missing project information in generated POMS
Browse files Browse the repository at this point in the history
This commit ensures that the project name and description are published
with the generated POMs.
  • Loading branch information
bclozel committed Sep 30, 2019
1 parent 545a4fa commit a446f57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gradle/publications.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a446f57

Please sign in to comment.