Skip to content

Commit fb72976

Browse files
authored
fix: update grails-publish and add organization (#15138)
1 parent cebdaf0 commit fb72976

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,10 @@ class PublishPlugin implements Plugin<Project> {
178178
it.license.name = 'Apache-2.0'
179179
it.title.set(project.provider { lookupProperty(project, 'pomTitle', project.rootProject.name == 'grails-forge' ? 'Apache Grails® Application Forge' : 'Apache Grails® framework')})
180180
it.desc.set(project.provider { lookupProperty(project, 'pomDescription', project.rootProject.name == 'grails-forge' ? 'Generates Apache Grails® applications' : 'Apache Grails® Web Application Framework')})
181+
it.organization {
182+
it.name.set('Apache Software Foundation')
183+
it.url.set('https://apache.org/')
184+
}
181185
it.developers.set(project.provider { lookupProperty(project, 'pomDevelopers', determineDevelopers(project))})
182186
it.pomCustomization = lookupProperty(project, 'pomCustomization') as Closure
183187
it.publishTestSources.set(project.provider { lookupProperty(project, 'pomPublishTestSources', false)})

grails-forge/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ title=Grails Application Forge
2424
projectDesc=Generates Grails applications
2525

2626
# for forge build process which is a micronaut 3.x.x app with picocli
27-
grailsPublishGradleVersion=0.0.2-SNAPSHOT
27+
grailsPublishGradleVersion=0.0.2
2828
antVersion=1.10.15
2929
antlr4Version=4.8-1!!
3030
apacheRatVersion=0.8.1

0 commit comments

Comments
 (0)