File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
build-logic/plugins/src/main/groovy/org/apache/grails/buildsrc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 [
You can’t perform that action at this time.
0 commit comments