StarChart-Labs / flare-plugins

Gradle plug-ins with opinionated defaults to allow streamlined, consistent operations
MIT License
1 stars 0 forks source link

Add Default Project Name and Descriptions for POM Meta-data #36

Closed romeara closed 4 years ago

romeara commented 4 years ago

Currently, there is no default handling for POM name/description in Gradle or the meta-data plug-in. We should add handling for this similar to

project.afterEvaluate { p ->
   publishing.publications.withType(MavenPublication.class).all { publication -> 
      publication.pom {
         name = "${project.name}"
         description = "${project.description}"
      }
   }
}

to, at minimum, the top-level library plug-ins