Add detailed documentation for standard Grails application profiles#15018
Add detailed documentation for standard Grails application profiles#15018jamesfredley merged 4 commits into7.0.xfrom
Conversation
Introduces new documentation sections and files for each default Grails application profile, including web, REST API, plugin, web-plugin, rest-api-plugin, and profile profiles. Updates the guide index and table of contents to reference these new sections, providing users with comprehensive information on available profiles, their commands, and features.
Updated documentation to refer to 'Standard Profiles' instead of 'Default Profiles'. Renamed the relevant AsciiDoc file, updated references in the index and table of contents, and adjusted terminology for consistency.
sbglasius
left a comment
There was a problem hiding this comment.
As a developer perhaps it would be nice to elaborate over the profile profile. I for one don't know how to use it 🙂
|
@jamesfredley the grails package-plugin is mentioned in the documentation so I guess this #11613 is no longer relevant. This is probaly not relevant any more |
matrei
left a comment
There was a problem hiding this comment.
The section 6.4 Publishing Profiles (which is outside this PR) has this snippet:
grailsPublish {
githubSlug = 'foo/bar'
license {
name = 'Apache-2.0'
}
title = 'My plugin title'
desc = 'My plugin description'
developers = [johndoe: 'John Doe']
}which should probably be:
grailsPublish {
githubSlug = 'foo/bar'
license {
name = 'Apache-2.0'
}
title = 'My profile title'
desc = 'My profile description'
developers = [johndoe: 'John Doe']
}|
@sbglasius Do you think 6.1 - 6.6 on https://docs.grails.org/snapshot/guide/profiles.html#creatingProfiles cover the |
Changed example values for 'title' and 'desc' from 'My plugin title/description' to 'My profile title/description' to better reflect the context of profile publishing.
|
section 6.4 Publishing Profiles has been updated |
Introduces new documentation sections and files for each standard Grails application profile, including web, REST API, plugin, web-plugin, rest-api-plugin, and profile profiles.
Resolves: #14695