-
-
Notifications
You must be signed in to change notification settings - Fork 971
Add detailed documentation for standard Grails application profiles #15018
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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