I started a grails application by grails create-app. For modularity, I feel like it would be better that component be a plugin. Can I convert this application into a grails plugin?
thanks,
Babu.
I started a grails application by grails create-app. For modularity, I feel like it
Share
I never created a plugin based on an application written before but looking at the documentation for grails plugins you can read the following statement:
So I would suggest to create a new plugin with
grails create-plugin *your-plugin-name*and copy all files from your application into the plugin.