Skip to content

Commit 3354c2c

Browse files
committed
feedback - rename developer list creator
1 parent 8a6fe53 commit 3354c2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc/PublishPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class PublishPlugin implements Plugin<Project> {
182182
it.name.set('Apache Software Foundation')
183183
it.url.set('https://apache.org/')
184184
}
185-
it.developers.set(getProjectDevelopers(project))
185+
it.developers.set(createDeveloperList(project))
186186
it.pomCustomization.set(project.provider { lookupProperty(project, 'pomCustomization') as Closure })
187187
it.publishTestSources.set(project.provider { lookupProperty(project, 'pomPublishTestSources', false)})
188188
it.testRepositoryPath.set(project.provider { shouldSkipJavaComponent(project) ? null : findRootGrailsCoreDir(project).dir('build/local-maven')})
@@ -191,7 +191,7 @@ class PublishPlugin implements Plugin<Project> {
191191
}
192192
}
193193

194-
private static List<MavenPomDeveloper> getProjectDevelopers(Project project) {
194+
private static List<MavenPomDeveloper> createDeveloperList(Project project) {
195195
// Note: id is typically the github user id if the user has a github account
196196
// Note: these lists are sorted alphabetically by section
197197
[

0 commit comments

Comments
 (0)