I created a private plugin for domain objects that are shared between two grails applications. I can use the plugin successfully in my local environment since I set the path to it through the BuildConfig file. For example, I have the following directories:
appOne/ myPlugin/grails-my-plugin-0.1.zip (myPlugin is a grails plugin project dir)
In: appOne / grails-app / conf / BuildConfig.groovy:
grails.plugin.location.compileMyPlugin = "../myPlugin"
My question is: what is the right / best way to handle the "packaging" of this plugin with my version of the application so that I can deploy it to the cloud service where it will not be available for download? I guess there is a way for the grail to do this for you, but I'm not sure. (I am very new to grails)
grails
RC
source share